:root {
    --primary: #065f46;
    --primary-light: #0d9488;
    --background: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(6, 95, 70, 0.1);
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --accent: #10b981;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(6, 95, 70, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 40%);
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out;
}

.logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    padding: 10px;
}

.logo-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary);
    letter-spacing: -0.025em;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

main {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--card-shadow);
}

.tab-switcher {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-switcher button {
    background: transparent;
    border: none;
    padding: 10px 28px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.tab-switcher button.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(6, 95, 70, 0.2);
}

.tab-switcher button:hover:not(.active) {
    color: var(--primary);
    background: rgba(6, 95, 70, 0.05);
}

h2 {
    font-size: 1.875rem;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.effective-date {
    font-size: 0.875rem;
    color: var(--primary-light);
    font-weight: 700;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-body h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 32px 0 12px;
    font-weight: 600;
}

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

ul {
    margin-bottom: 24px;
    padding-left: 24px;
    color: var(--text-secondary);
}

li {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    margin-top: 64px;
    padding-bottom: 40px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.content-section {
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
    main {
        padding: 32px 24px;
    }
    h1 {
        font-size: 2rem;
    }
    .tab-switcher {
        width: 100%;
    }
    .tab-switcher button {
        flex: 1;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}
