@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700;900&display=swap');

:root {
    --color-bg: #FFFFFF;
    --color-text: #1A1A1A;
    --section-padding: 5.5rem;
    --max-width: 1100px;
}

/* THE FIX: Centering the entire site container with pure CSS */
html {
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    
    width: 100%;
    max-width: var(--max-width);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif !important;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.02em;
    display: block;
}

h1 { font-size: 4.2rem !important; font-weight: 900 !important; margin-bottom: 2rem !important; }
h2 { font-size: 3.15rem !important; font-weight: 700 !important; margin-top: 4rem !important; margin-bottom: 1.5rem !important; }
h3 { font-size: 2.37rem !important; font-weight: 700 !important; margin-top: 3rem !important; margin-bottom: 1.25rem !important; }
h4 { font-size: 1.77rem !important; font-weight: 700 !important; margin-bottom: 1rem !important; }

p { margin-bottom: 1.5rem !important; opacity: 0.9; }

/* Layout - Pure CSS */
.container-custom {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Header & Menu - SEPARATING ITEMS CLEARLY */
.wf-header {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #000000;
    margin-bottom: 4rem;
}

.nav-wf {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem; /* HUGE GAP TO SEPARATE ITEMS */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3em;
}

.nav-wf a {
    text-decoration: none;
    color: #000000;
    transition: opacity 0.3s ease;
}

.nav-wf a:hover {
    opacity: 0.5;
}

/* Sections */
.section-premium {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    border-bottom: 1px solid #EEEEEE;
}

/* Boxes */
.wf-box {
    border: 1px solid #000000;
    padding: 3rem;
    margin-bottom: 2rem;
    background-color: #FFFFFF;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 4rem;
    border: 2px solid #000000;
}

table thead tr {
    background-color: #F8F8F8;
    border-bottom: 2px solid #000000;
}

table th, table td {
    border: 1px solid #DDDDDD;
    padding: 1.5rem;
    text-align: left;
}

/* Buttons */
.btn-wf {
    display: inline-block;
    padding: 1.25rem 3rem;
    border: 2px solid #000000;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-decoration: none;
    color: #000000;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.btn-wf:hover {
    background-color: #000000;
    color: #FFFFFF;
}

strong { font-weight: 700; }
.opacity-low { opacity: 0.4; }

.img-premium {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 3rem 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    display: block;
}

.img-float-right {
    float: right;
    width: 45%;
    margin: 0 0 2rem 2.5rem;
}

@media (max-width: 768px) {
    .img-float-right {
        float: none;
        width: 100%;
        margin: 2rem 0;
    }
}
