/* Mobile Styles */
@media screen and (max-width: 768px) {
/* Body Padding for Mobile */
body {
    padding-bottom: 6rem !important;
}

/* Hero Section Mobile Styles */
.program-hero {
    padding-top: 4rem !important;
}    /* Sticky CTA Mobile Styles */
    [style*="position: fixed"][style*="bottom: 0"] {
        padding: 0.5rem 0.75rem !important;
        gap: 0.5rem !important;
        justify-content: center !important;
    }

    [style*="position: fixed"][style*="bottom: 0"] .cta-button {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem !important;
    }

    [style*="position: fixed"][style*="bottom: 0"] [style*="background: rgba(255, 255, 255, 0.1)"] {
        padding: 0.35rem 0.75rem !important;
    }

    [style*="position: fixed"][style*="bottom: 0"] [style*="background: rgba(255, 255, 255, 0.1)"] span {
        font-size: 0.8rem !important;
    }

    /* Navigation */
    .navbar {
        padding: 0.5rem 1rem;
        background: white;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        position: fixed;
        left: 0;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-item {
        margin: 1rem 0;
    }
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 16px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .program-hero h1 {
        font-size: 2rem !important;
        padding: 0 1rem;
    }

    .subtitle {
        font-size: 1.1rem !important;
        padding: 0 1rem;
    }

    /* Grid Layouts */
    .social-proof [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .who-its-for [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* Timeline */
    .timeline-grid {
        flex-direction: column !important;
        padding: 1rem;
    }

    .timeline-week {
        margin-bottom: 2rem;
    }

    /* FAQ Section */
    .faq-section .container {
        padding: 0 1rem;
    }

    /* CTA Buttons */
    .cta-button {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    /* Sticky CTA */
    [style*="position: fixed; bottom: 0"] {
        flex-direction: column !important;
        padding: 0.75rem !important;
    }

    [style*="position: fixed; bottom: 0"] .cta-button {
        width: 100% !important;
        margin-top: 0.5rem !important;
    }

    /* General Spacing */
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2rem 0 !important;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        margin-top: 1rem;
    }
}

/* Base Styles for Hamburger */
.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}
