:root {
    --primary: #00B67D;
    /* Teal */
    --secondary: #FA4092;
    /* Pink */
    --accent-orange: #FFB100;
    --accent-yellow: #FFD200;
    --bg-page: #F7F4EF;
    --bg-card: #FFFFFF;
    --text-main: #555A62;
    --text-dark: #2D2F33;
    --text-light: #8E9297;
    --border-radius: 12px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
    --gradient-btn: linear-gradient(180deg, #FFB100 0%, #FA4092 100%);
    --gradient-header: linear-gradient(135deg, #2D2F33 0%, #4A4E54 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Site Header */
.site-header {
    background: var(--bg-card);
    padding: 2rem 0;
    border-bottom: 1px solid #E5E7EB;
    text-align: center;
    margin-bottom: 2rem;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 60px;
    width: auto;
}

.site-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: #F0F2F5;
    color: var(--primary);
}

.nav-link.active {
    background-color: var(--primary);
    color: white;
}

/* Main Content */
.main-content {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

section {
    margin-bottom: 4rem;
    scroll-margin-top: 2rem;
    --section-number: "";
}

section:last-child {
    /* Adjusted */
    min-height: 40rem;
    /* Ensure enough height to push the card down */
    display: flex;
    flex-direction: column;
    margin-bottom: 0rem
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 32px;
    background-color: var(--primary);
    border-radius: 4px;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

ul {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.8rem;
}

ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.numbered-list {
    list-style: none;
    margin-bottom: 1.2rem;
    padding-left: 2.75rem;
    counter-reset: item;
}

.numbered-list li {
    position: relative;
    margin-bottom: 0.8rem;
    counter-increment: item;
}

.numbered-list li::before {
    content: var(--section-number) "." counters(item, ".");
    position: absolute;
    left: -2.5rem;
    width: 2.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.numbered-list .numbered-list {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.numbered-list .numbered-list li::before {
    color: var(--text-main);
}

section[data-section="1"] {
    --section-number: "1";
}

section[data-section="2"] {
    --section-number: "2";
}

section[data-section="3"] {
    --section-number: "3";
}

section[data-section="4"] {
    --section-number: "4";
}

section[data-section="5"] {
    --section-number: "5";
}

section[data-section="6"] {
    --section-number: "6";
}

section[data-section="7"] {
    --section-number: "7";
}

section[data-section="8"] {
    --section-number: "8";
}

section[data-section="9"] {
    --section-number: "9";
}

section[data-section="10"] {
    --section-number: "10";
}

section[data-section="11"] {
    --section-number: "11";
}

section[data-section="12"] {
    --section-number: "12";
}

section[data-section="13"] {
    --section-number: "13";
}

section[data-section="14"] {
    --section-number: "14";
}

section[data-section="15"] {
    --section-number: "15";
}

/* Contact Card */
.contact-card {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #E5E7EB;
    margin-top: auto;
    /* Push to bottom of flex container */
    text-align: center;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.pill-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient-btn);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(250, 64, 146, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(250, 64, 146, 0.4);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .hero-banner h1 {
        font-size: 2.2rem;
    }

    .main-content {
        padding: 2rem;
    }
}