:root {
    --primary-blue: #0A2140;
    --primary-red: #c41e3a;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-accent: #edf2f7;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: rgba(247, 250, 252, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(247, 250, 252, 0.98);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    width: 40px;
    height: 48px;
    object-fit: contain;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav a:hover {
    color: var(--primary-blue);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 6px;
    left: 0;
}

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.5rem;
}

.logo-text {
    display: inline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 33, 64, 0.02) 0%, rgba(196, 30, 58, 0.02) 100%);
    border-radius: 0 0 0 200px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    padding-bottom: 0.2rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-family: 'Fraunces', serif;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    max-width: 121%;
    height: auto;
    max-height: 484px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    transition: transform 0.6s ease;
}

.hero-visual:hover img {
    transform: scale(1.02) rotate(1deg);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-button:active {
    transform: translateY(0);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: -2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Fraunces', serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.transition-header {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

/* ============================================
   TRANSITION SECTION (A Once-in-a-Generation)
   ============================================ */

.transition-section {
    padding: 4rem 0 2rem;
    background: var(--bg-primary);
}

.transition-header {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.transition-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
}

.transition-text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.transition-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.transition-text p:last-child {
    margin-bottom: 0;
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mission-card h2 {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
}

.mission-card h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    border-radius: 2px;
}

.mission-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Pillars */
.pillars {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.pillars h2 {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    cursor: pointer;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
}

.pillar-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.pillar-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pillar-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-link {
    color: var(--primary-red);
    transform: translateX(4px);
}

/* ============================================
   PILLAR META & FOCUS AREAS (NEW STYLES)
   ============================================ */

.pillar-meta {
    font-size: 0.8rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

/* Compact pillars section */
.pillars-compact {
    padding: 4rem 0 2rem;
}

.pillars-compact .section-title {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

/* Wide focus area cards - centered */
.pillars-grid.focus-preview-wide {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pillar-card.pillar-card-wide {
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 320px;
    max-width: 400px;
}

@media (max-width: 1200px) {
    .pillar-card.pillar-card-wide {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .pillar-card.pillar-card-wide {
        flex: 0 1 100%;
        max-width: 100%;
    }
    
    .pillars-compact .section-title {
        font-size: 1.1rem;
    }
}

/* Research Highlight */
.research-highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.research-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.research-highlight-content {
    position: relative;
    z-index: 2;
}

.research-highlight h3 {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.research-highlight p {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.secondary-button {
    background: white;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.secondary-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Accord Moments */
.accord-moments {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.accord-moments h2 {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Smaller header for accord moments */
.accord-header-small {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.moment-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.moment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
}

.moment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.moment-stat {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 1rem;
    font-family: 'Fraunces', serif;
}

.moment-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.moment-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Newsletter */
.newsletter-signup {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.newsletter-signup h3 {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-signup p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.newsletter-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: scale(1.05);
}

/* Final CTA */
.final-cta {
    padding: 1rem 0;
}

.final-cta-content {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: white;
    border-radius: 24px;
    margin: 1rem 0;
}

.final-cta h2 {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Modal */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1001;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-secondary);
    padding-bottom: 1rem;
}

.modal-title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.modal-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-content h4 {
    color: var(--text-primary);
    margin: 1.5rem 0 1rem 0;
    font-family: 'Fraunces', serif;
}

.modal-content h5 {
    color: var(--primary-blue);
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.modal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-content li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-social {
        grid-column: 3;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header-content {
        position: relative;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-text {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 16px 16px;
        padding: 1rem 0;
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        padding: 0 2rem;
    }

    .nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-light);
    }

    .nav a::after {
        display: none;
    }

    .nav li:last-child a {
        border-bottom: none;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .mission-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section p {
        max-width: none;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .transition-header {
        font-size: 1.6rem;
    }

    .transition-text p {
        font-size: 1rem;
    }
}

/* Privacy Policy Page */
.privacy-policy {
    padding: 6rem 0 4rem;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    min-height: calc(100vh - 200px);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.policy-content h1 {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
}

.policy-intro {
    margin-bottom: 3rem;
}

.policy-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: .75rem;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.policy-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: .75rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.policy-section li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.policy-section li strong {
    color: var(--text-primary);
}

.contact-info {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    margin-top: 1rem;
}

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

.contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.policy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-light);
}

.policy-footer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.back-link {
    margin-top: 2rem;
}

.back-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.back-link a:hover {
    gap: 0.75rem;
}

/* Responsive adjustments for privacy policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 4rem 0 2rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .policy-intro p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}
