:root {
            --pink: #C71B81;
            --purple: #3C0758;
            --dark-gray: #1a1a1a;
            --gray: #666666;
            --light-gray: #f8f9fa;
            --border: #e5e7eb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--dark-gray);
            background: #ffffff;
            line-height: 1.6;
        }
        
        /* Header */
        header {
            position: sticky;
            top: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 1.25rem 4rem;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }
        
        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            height: 70px;
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--pink);
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-toggle::after {
            content: '▼';
            font-size: 0.7rem;
            margin-left: 0.5rem;
            opacity: 0.6;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            margin-top: 1rem;
            padding: 0.5rem 0;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--dark-gray);
            transition: all 0.2s;
        }
        
        .dropdown-menu a:hover {
            background: var(--light-gray);
            color: var(--pink);
        }
        
        .cta-button {
            padding: 0.75rem 1.75rem;
            background: var(--pink);
            color: white;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(199,27,129,0.3);
        }
        
        /* Hero */
        .hero {
            padding: 8rem 4rem 6rem;
            background: linear-gradient(135deg, #fef1f8 0%, #f5f0fe 50%, #f8f9fa 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, rgba(199,27,129,0.15) 0%, rgba(60,7,88,0.2) 100%);
            border-radius: 0 0 0 100%;
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .carousel-slide {
            display: none;
            animation: fadeIn 0.8s ease-in-out;
        }
        
        .carousel-slide.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            max-width: 900px;
        }
        
        .hero p {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 2.5rem;
            max-width: 700px;
            line-height: 1.7;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .btn {
            padding: 1rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .btn-primary {
            background: var(--pink);
            color: white;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(199,27,129,0.3);
        }
        
        .btn-secondary {
            background: white;
            color: var(--dark-gray);
            border: 1.5px solid var(--border);
        }
        
        .btn-secondary:hover {
            border-color: var(--pink);
            color: var(--pink);
        }
        
        .carousel-dots {
            display: flex;
            gap: 0.75rem;
            margin-top: 3rem;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: var(--pink);
            width: 28px;
            border-radius: 5px;
        }
        
        /* Section */
        .section {
            padding: 6rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-label {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--pink);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.15rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Solutions Grid */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .solution-card {
            background: linear-gradient(135deg, #fef1f8 0%, #f5f0fe 100%);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid rgba(199,27,129,0.2);
            border-left: 6px solid var(--pink);
            transition: all 0.3s;
            position: relative;
        }
        
        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(199,27,129,0.08) 0%, rgba(60,7,88,0.12) 100%);
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 0;
        }
        
        .solution-card:hover::before {
            opacity: 1;
        }
        
        .solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(199,27,129,0.25);
            border-left-color: var(--purple);
            border-left-width: 8px;
            background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
        }
        
        .solution-card h3,
        .solution-card p,
        .solution-card a {
            position: relative;
            z-index: 1;
        }
        
        .solution-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--dark-gray);
        }
        
        .solution-card p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1.25rem;
            font-size: 0.95rem;
        }
        
        .solution-card a {
            color: var(--pink);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }
        
        .solution-card a:hover {
            gap: 0.75rem;
        }
        
        .solution-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--dark-gray);
        }
        
        .solution-card p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1.25rem;
            font-size: 0.95rem;
        }
        
        .solution-card a {
            color: var(--pink);
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .solution-card a:hover {
            gap: 0.75rem;
        }
        
        /* Values */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }
        
        .value-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.06);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
        }
        
        .value-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-gray);
        }
        
        .value-card p {
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* Stats */
        .stats {
            background: var(--light-gray);
            padding: 5rem 4rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--pink);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: var(--gray);
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        /* Footer */
        footer {
            background: var(--dark-gray);
            color: white;
            padding: 4rem 4rem 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto 3rem;
        }
        
        .footer-col h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-col p,
        .footer-col a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.75rem;
            transition: color 0.3s;
            font-size: 0.95rem;
        }
        
        .footer-col a:hover {
            color: var(--pink);
        }
        
        .social-icons a:hover {
            background: var(--pink) !important;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        @media (max-width: 1024px) {
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.25rem;
            }
            
            .solutions-grid,
            .values-grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        /* Capabilities Section */
.capabilities {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.capability-card {
    background: linear-gradient(135deg, #fef1f8 0%, #f5f0fe 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(199,27,129,0.2);
    border-left: 6px solid var(--pink);
    transition: all 0.3s;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(199,27,129,0.25);
}

.capability-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

.capability-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.capability-card .learn-more {
    color: var(--pink);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

/* Why Sherpa Section */
.why-sherpa {
    padding: 6rem 4rem;
    background: var(--light-gray);
}

.why-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.why-text p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.page-hero {
    padding: 6rem 4rem 5rem;
    background: linear-gradient(135deg, #fef1f8 0%, #f5f0fe 50%, #f8f9fa 100%);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(199,27,129,0.15) 0%, rgba(60,7,88,0.2) 100%);
    border-radius: 0 0 0 100%;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--gray);
}

.section-gray {
    background: var(--light-gray);
}

.story {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* Contact Page - Map Section */
.map-section {
    padding: 4rem 4rem 2rem;
    background: #fff;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #e8f0f8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.map-container svg {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Map marker animations */
.office-dot {
    fill: rgba(199, 27, 129, 0.35);
    transform-box: fill-box;
    transform-origin: center;
    animation: svgPulse 2s ease-out infinite;
    pointer-events: none;
}

.office-dot-center {
    fill: var(--pink);
    stroke: #fff;
    stroke-width: 3;
    transition: transform 0.2s ease;
    transform-box: fill-box;
    transform-origin: center;
}

g[id^="dot-"] {
    cursor: pointer;
}

g[id^="dot-"]:hover .office-dot-center {
    transform: scale(1.18);
}

@keyframes svgPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    70% {
        transform: scale(2.2);
        opacity: 0;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.map-legend {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #6b7280;
}

.map-legend strong {
    color: var(--pink);
}

/* Contact Form Section */
.contact-section {
    padding: 4rem 4rem 6rem;
    background: var(--light-gray);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--pink);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.125rem;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(199,27,129,0.3);
}

.success-message {
    display: none;
    background: linear-gradient(135deg, #d4f4dd 0%, #e8f5e9 100%);
    border: 2px solid #4caf50;
    color: #2e7d32;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
    .map-section {
        padding: 2rem 1rem 1rem;
    }
}

/* Contact page - side-by-side layout */
.contact-wrapper {
    padding: 4rem 4rem 6rem;
    background: var(--light-gray);
}

.contact-container-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.map-side,
.form-side {
    /* Optional: add any side-specific styling here */
}

/* Mobile: stack vertically */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        padding: 2rem 1.5rem 3rem;
    }
}

/* Leadership/Team sections - add these to main.css */
/* Team section spacing */
.team-section {
    margin-bottom: 5rem;
}

.team-section:last-child {
    margin-bottom: 0;
}

/* Leadership grid - 3 columns */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Team grid - flexible, max 3 per row */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
}

/* Team member card (same for all) */
.team-member {
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
}

.headshot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef1f8 0%, #f5f0fe 100%);
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(199,27,129,0.2);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s;
}

.headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member:hover .headshot {
    box-shadow: 0 15px 40px rgba(199,27,129,0.35);
    border-color: var(--pink);
}

.team-member h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-member .title {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--pink);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.linkedin-btn:hover {
    background: #a81668;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199,27,129,0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .leadership-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .leadership-grid,
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

/* Benefits/Feature Cards - add to main.css */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background: linear-gradient(135deg, #fef1f8 0%, #f5f0fe 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 6px solid var(--pink);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(199,27,129,0.2);
    border-left-width: 8px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--pink);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(199,27,129,0.15);
}

.benefit-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Process Steps - add to main.css */

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    top: 30px;
    right: -1rem;
    font-size: 2rem;
    color: var(--pink);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(199,27,129,0.3);
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* CTA Section - add to main.css */

.cta-section {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    padding: 5rem 4rem;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--pink);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .benefits-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .process-steps { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .benefits-grid { 
        grid-template-columns: 1fr; 
    }
    .process-steps { 
        grid-template-columns: 1fr; 
    }
    .process-step::after { 
        display: none; 
    }
}
/* Platforms/Tools Grid - add to main.css */

.platforms-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.platform-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.platform-item:hover {
    border-color: var(--pink);
    box-shadow: 0 8px 24px rgba(199,27,129,0.15);
}

.platform-item i {
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 1rem;
}

.platform-item h4 {
    font-weight: 700;
    color: var(--dark-gray);
}

/* Responsive */
@media (max-width: 1024px) {
    .platforms-list { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .platforms-list { 
        grid-template-columns: 1fr; 
    }
}

/* Threat Grid (2-column layout) - add to main.css */

.threat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.threat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.threat-item:hover {
    border-color: var(--pink);
    box-shadow: 0 8px 24px rgba(199,27,129,0.15);
}

.threat-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

.threat-item p {
    color: var(--gray);
    line-height: 1.7;
}

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

/* Insights Page Styles - Add to main.css */

.filter-section {
    padding: 3rem 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.filter-tabs {
    display: inline-flex;
    gap: 1rem;
    background: var(--light-gray);
    padding: 0.5rem;
    border-radius: 12px;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tab:hover {
    color: var(--pink);
}

.filter-tab.active {
    background: white;
    color: var(--pink);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.posts-section {
    padding: 2rem 4rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--pink);
}

.post-card.hidden {
    display: none;
}

.post-image {
    height: 200px;
    background: linear-gradient(135deg, #fef1f8 0%, #f5f0fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--pink);
}

.post-content {
    padding: 2rem;
}

.post-category {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.post-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

.post-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.post-meta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray);
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.no-posts p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-section {
        padding: 2rem 1.5rem 1rem;
    }
    
    .posts-section {
        padding: 1rem 1.5rem 3rem;
    }
}
/* ====================
   MOBILE MENU
   ==================== */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
}

nav {
    position: relative;
    z-index: 1002;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1003;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu panel */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 1.5rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: var(--pink);
}

.mobile-cta {
    margin-top: 1rem;
    background: var(--pink);
    color: white !important;
    text-align: center;
    border-radius: 10px;
    border: none !important;
    padding: 1rem 1.25rem !important;
}

/* Dropdown */
.mobile-dropdown {
    border-bottom: 1px solid var(--border);
}

.mobile-dropdown-toggle {
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-toggle::after {
    content: '+';
    font-size: 1.2rem;
    line-height: 1;
    color: var(--pink);
    transition: transform 0.25s ease;
}

.mobile-dropdown-toggle.active::after {
    transform: rotate(45deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-content.active {
    max-height: 300px;
}

.mobile-dropdown-content a {
    padding: 0.75rem 0 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 400;
    border-bottom: none;
    color: #555;
}

/* Prevent body scroll */
body.mobile-menu-open {
    overflow: hidden;
}

/* Mobile only */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    header {
        padding: 0;
    }
}


/* ====================
   RESOURCES PAGE
   ==================== */

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

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(199,27,129,0.15);
}

.resource-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fef1f8 0%, #f5f0fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.resource-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199,27,129,0.3);
}

.download-btn i {
    font-size: 0.9rem;
}

/* Logo Preview */
.logo-preview {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 8px;
    padding: 1rem;
}

.logo-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Brand Guidelines */
.brand-guidelines {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.guideline-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.guideline-section h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

/* Color Swatches */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.color-swatch {
    text-align: center;
}

.color-box {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.color-swatch h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.color-code {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.color-rgb {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Typography Sample */
.typography-sample {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.font-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.font-description {
    color: var(--gray);
    margin-bottom: 2rem;
}

.font-weights {
    margin-bottom: 1.5rem;
}

.font-weights p {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--dark-gray);
}

.font-weights p:last-child {
    border-bottom: none;
}

.font-link {
    display: inline-flex;
    align-items: center;
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.font-link:hover {
    color: var(--purple);
}

/* Usage Guidelines */
.usage-guidelines {
    display: grid;
    gap: 1rem;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.usage-item i {
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.usage-item p {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .guideline-section {
        padding: 2rem 1.5rem;
    }
    
    .color-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Header-specific CTA button */
nav .cta-button,
.nav-links .cta-button {
    padding: 0.75rem 1.75rem;
    background: var(--pink);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

nav .cta-button:hover,
.nav-links .cta-button:hover {
    color: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199,27,129,0.3);
}

.footer-bottom a:hover {
    color: var(--pink) !important;
}

/* ========================================
   ONBOARDING FORMS STYLES
   Add this section to your main.css file
   ======================================== */

/* Form Container Variables */
.onboarding-container,
.thank-you-page {
    --form-purple: var(--purple);
    --form-pink: var(--pink);
    --form-gray: var(--gray);
    --form-light-gray: var(--light-gray);
    --form-dark-gray: var(--dark-gray);
    --form-border: var(--border);
    --success: #10B981;
    --error: #EF4444;
}

/* Hero Section */
.onboarding-hero {
    background: linear-gradient(135deg, var(--form-light-gray) 0%, #FFFFFF 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.onboarding-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--form-dark-gray);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.onboarding-hero p {
    color: var(--form-gray);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form Container */
.form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--form-border);
}

/* Progress Bar */
.progress-bar {
    height: 4px;
    background: var(--form-border);
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--form-purple), var(--form-pink));
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Form Content */
.form-content {
    padding: 3rem;
}

@media (max-width: 768px) {
    .form-content {
        padding: 2rem 1.5rem;
    }
}

/* Form Sections */
.onboarding-container .section {
    margin-bottom: 3rem;
}

.onboarding-container .section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--form-border);
}

.onboarding-container .section-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--form-purple), var(--form-pink));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.onboarding-container .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--form-dark-gray);
}

/* Form Rows and Groups */
.form-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.two-col {
    grid-template-columns: 1fr 1fr;
}

.form-row.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 640px) {
    .form-row.two-col,
    .form-row.three-col {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--form-dark-gray);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.required {
    color: var(--form-pink);
    font-weight: 700;
}

/* Form Inputs */
.onboarding-container input[type="text"],
.onboarding-container input[type="email"],
.onboarding-container input[type="tel"],
.onboarding-container input[type="url"],
.onboarding-container input[type="number"],
.onboarding-container select,
.onboarding-container textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--form-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
    color: var(--form-dark-gray);
}

.onboarding-container input:focus,
.onboarding-container select:focus,
.onboarding-container textarea:focus {
    outline: none;
    border-color: var(--form-purple);
    box-shadow: 0 0 0 3px rgba(60, 7, 88, 0.1);
}

.onboarding-container input:hover,
.onboarding-container select:hover,
.onboarding-container textarea:hover {
    border-color: var(--form-gray);
}

.onboarding-container textarea {
    min-height: 100px;
    resize: vertical;
}

.onboarding-container select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2352525B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.help-text {
    font-size: 0.875rem;
    color: var(--form-gray);
    margin-top: 0.25rem;
}

/* Checkboxes */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.checkbox-item:hover {
    background: var(--form-light-gray);
}

.onboarding-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--form-purple);
    flex-shrink: 0;
}

.checkbox-item label {
    cursor: pointer;
    margin: 0;
}

/* Submit Section */
.submit-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--form-border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.consent-box {
    background: var(--form-light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--form-border);
}

.consent-item {
    display: flex;
    gap: 0.75rem;
    align-items: start;
}

.consent-item input[type="checkbox"] {
    margin-top: 0.25rem;
}

.consent-item label {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.onboarding-container button,
.thank-you-page button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: var(--form-light-gray);
    color: var(--form-dark-gray);
}

.btn-secondary:hover {
    background: var(--form-border);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--form-purple), var(--form-pink));
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(60, 7, 88, 0.3);
}

@media (max-width: 640px) {
    .button-group {
        flex-direction: column;
    }

    .onboarding-container button,
    .thank-you-page button {
        width: 100%;
        justify-content: center;
    }

    .onboarding-hero h1 {
        font-size: 2rem;
    }
}

/* ========================================
   THANK YOU PAGE STYLES
   ======================================== */

.thank-you-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 6rem 1rem;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success), #34D399);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.thank-you-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--form-dark-gray);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.thank-you-container p {
    color: var(--form-gray);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.next-steps {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--form-dark-gray);
    margin-bottom: 1.25rem;
}

.next-steps ol {
    color: var(--form-gray);
    line-height: 1.8;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.75rem;
}

.next-steps strong {
    color: var(--form-dark-gray);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--form-purple), var(--form-pink));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(60, 7, 88, 0.3);
    color: white;
}

@media (max-width: 640px) {
    .thank-you-container h1 {
        font-size: 2rem;
    }
    
    .thank-you-container {
        padding: 4rem 1rem;
    }
}