:root {
    --primary-navy: #0B1E3F;
    --secondary-green: #009B4D;
    --accent-teal: #00A8A8;
    --highlight-orange: #F28C28;
    --bg-white: #FFFFFF;
    --bg-light: #F5F7FA;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    background-color: var(--primary-navy);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    flex-shrink: 0;
}

.logo-container {
    padding: 0 1.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    padding: 5px;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-highlight {
    color: var(--secondary-green);
}

.site-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.nav-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
}

.nav-link.active {
    background-color: var(--secondary-green);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 155, 77, 0.2);
}

/* Content Area Styles */
.content-area {
    flex: 1;
    padding: 3rem 4rem;
    background-color: var(--bg-white);
    overflow-y: auto;
}

.tab-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--highlight-orange);
    display: inline-block;
}

.policy-text {
    color: var(--text-light);
    font-size: 1rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.policy-text p {
    margin-bottom: 1.5rem;
}

.policy-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-text li {
    margin-bottom: 0.75rem;
}

.policy-text h3 {
    color: var(--primary-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.policy-text .disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-style: italic;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

th,
td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: rgba(0, 0, 0, 0.02);
    font-weight: 600;
    color: var(--primary-navy);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        padding: 1rem;
    }

    .logo-container {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0 0 1rem;
        text-align: left;
        border-bottom: none;
        margin-bottom: 0;
    }

    .logo {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
    }

    .nav-menu {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        gap: 0.5rem;
    }

    .nav-link {
        white-space: nowrap;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .content-area {
        padding: 2rem 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}