/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #111827;
    min-height: 100vh;
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

/* Enhanced Hero Section */
.hero {
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix in="turbulence" type="saturate" values="0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.4"/></svg>');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 64rem;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.75rem;
    }
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 48rem;
}

/* Floating Elements - Nature Only - Avoid Video Area */
.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.floating-icon:nth-child(1) {
    top: 8%;
    left: 3%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    bottom: 12%;
    right: 5%;
    animation-delay: 3s;
}

.floating-icon:nth-child(3) {
    bottom: 35%;
    left: 6%;
    animation-delay: 6s;
}

.floating-icon:nth-child(4) {
    top: 20%;
    right: 4%;
    animation-delay: 1.5s;
}

/* Desktop positioning - more spread out */
@media (min-width: 768px) {
    .floating-icon:nth-child(1) {
        top: 10%;
        left: 5%;
    }

    .floating-icon:nth-child(2) {
        bottom: 15%;
        right: 8%;
    }

    .floating-icon:nth-child(3) {
        bottom: 40%;
        left: 8%;
    }

    .floating-icon:nth-child(4) {
        top: 25%;
        right: 6%;
    }
}

/* Mobile positioning - keep them in corners */
@media (max-width: 767px) {
    .floating-icon:nth-child(1) {
        top: 5%;
        left: 2%;
    }

    .floating-icon:nth-child(2) {
        bottom: 8%;
        right: 3%;
    }

    .floating-icon:nth-child(3) {
        bottom: 30%;
        left: 3%;
    }

    .floating-icon:nth-child(4) {
        top: 15%;
        right: 2%;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(3deg); }
    66% { transform: translateY(8px) rotate(-2deg); }
}

/* Video embed container styles */
.video-container {
    position: relative;
    width: 100%;
    max-width: 892px; /* 15% smaller: 1050 × 0.85 */
    margin: 0 auto 20px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #374151;
    z-index: 20; /* Ensure video stays above floating elements */
}

.video-container .wistia_responsive_padding {
    padding: 56.25% 0 0 0;
    position: relative;
}

.video-container .wistia_responsive_wrapper {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.video-container .wistia_embed {
    height: 100%;
    position: relative;
    width: 100%;
}

.content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* BOTH BUTTONS - EXACTLY THE SAME SIZE AND STYLE */
.cta-button,
.cta-button-call {
    font-weight: 700;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: none;
    /* Ensure exact same dimensions */
    min-width: 200px;
    text-align: center;
    box-sizing: border-box;
}

/* Primary button (orange) */
.cta-button {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #111827;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4);
}

/* Secondary button (purple) */
.cta-button-call {
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
}

.cta-button-call:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    color: #c7d2fe;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.3);
}

/* Button container for side-by-side layout */
.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Scroll Down Arrow */
.scroll-indicator {
    position: relative;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f59e0b;
    cursor: pointer;
    z-index: 20;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-text {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: pulse 2s infinite;
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Hide scroll indicator on mobile landscape or small heights */
@media (max-height: 600px) {
    .scroll-indicator {
        display: none;
    }
}

/* DESKTOP STYLES - BALANCED SPACING */
@media (min-width: 768px) {
    .hero {
        padding: 1.5rem 0 2rem;
        min-height: 80vh;
    }

    .hero-content {
        transform: translateY(-1rem);
    }

    .hero h1 {
        font-size: 2.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }

    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    #content-section {
        margin-top: -0.5rem;
    }

    #content-section h2 {
        margin-top: 0rem;
        margin-bottom: 0.5rem;
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .video-container {
        max-width: 900px;
        margin: 0rem auto 2.5rem;
    }

    .text-center {
        margin-top: -40px;
        position: relative;
        z-index: 1;
    }

    .cta-button,
    .cta-button-call {
        margin-top: 0.5rem;
        padding: 0.875rem 1.75rem; /* Keep same size on desktop */
    }

    .button-container {
        margin-top: 0.5rem;
    }

    .scroll-indicator {
        margin-top: 1rem;
        position: relative;
    }
}

/* Mobile responsiveness for buttons */
@media (max-width: 640px) {
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-button,
    .cta-button-call {
        width: 100%;
        max-width: 280px;
        margin-top: 0;
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Enhanced decorative elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* ENHANCED SLIDING ANIMATIONS */
.slide-section {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.slide-section.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-item {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.slide-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delays for multiple items */
.slide-item:nth-child(1).visible { transition-delay: 0.1s; }
.slide-item:nth-child(2).visible { transition-delay: 0.2s; }
.slide-item:nth-child(3).visible { transition-delay: 0.3s; }
.slide-item:nth-child(4).visible { transition-delay: 0.4s; }
.slide-item:nth-child(5).visible { transition-delay: 0.5s; }
.slide-item:nth-child(6).visible { transition-delay: 0.6s; }

/* Enhanced Course Overview Section */
.course-overview {
    padding: 5rem 0;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    position: relative;
}

.course-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    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="1" fill="rgba(245,158,11,0.1)"/><circle cx="20" cy="20" r="0.5" fill="rgba(139,92,246,0.08)"/><circle cx="80" cy="30" r="0.8" fill="rgba(99,102,241,0.06)"/><circle cx="30" cy="80" r="0.6" fill="rgba(245,158,11,0.08)"/></svg>');
    background-size: 200px 200px;
    opacity: 0.5;
}

.section-header {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: #d1d5db;
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .course-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.course-card {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.day-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 2px solid rgba(245, 158, 11, 0.2);
    position: relative;
}

.day-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
}

.course-card .day-label {
    color: #f59e0b;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.course-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.course-card ul {
    list-style: none;
}

.course-card li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.check-icon {
    color: #f59e0b;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 1rem;
}

/* Enhanced Benefits Section */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.alert {
    background-color: #1f2937;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.alert-description {
    color: #d1d5db;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-list {
    list-style: none;
}

.benefits-list h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.number-badge {
    background-color: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    font-weight: 700;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.journaling-card {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(55, 65, 81, 0.4);
    transition: all 0.3s ease;
}

.journaling-card:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.4);
}

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

.journaling-card p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.journaling-card ul {
    list-style: none;
}

.journaling-card li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.bullet-point {
    color: #f59e0b;
    margin-right: 0.5rem;
}

/* Enhanced CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.95)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(245,158,11,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(139,92,246,0.1);stop-opacity:1" /></linearGradient></defs><rect width="100%" height="100%" fill="url(%23grad1)"/></svg>');
    position: relative;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

.cta-content p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .signup-form {
        flex-direction: row;
    }
}

.email-input {
    background-color: #374151;
    border: 1px solid #4b5563;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    flex: 1;
}

.email-input::placeholder {
    color: #9ca3af;
}

.submit-button {
    background-color: #f59e0b;
    color: #111827;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.submit-button:hover {
    background-color: #d97706;
}

.privacy-text {
    margin-top: 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Footer */
footer {
    background-color: #111827;
    color: #9ca3af;
    border-top: 1px solid #1f2937;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        gap: 0;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand img {
    height: 2rem;
    width: auto;
}

.footer-brand span {
    color: #ffffff;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Modal popup styles */
#my-form-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.5);
    padding: 20px;
}

#my-form {
    position: relative;
    width: 80%;
    max-width: 480px;
    margin: 40px auto;
    background-color: #111827;
    border-radius: 0.75rem;
    padding: 25px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#my-form-icon {
    max-width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

#my-form-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem !important;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.btn-optin-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #9ca3af;
    cursor: pointer;
    z-index: 1001;
}

.btn-optin-close:hover {
    color: #ffffff;
}

#my-fieldset {
    margin-bottom: 20px;
}

#my-fieldset input[type="text"],
#my-fieldset input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    background-color: #374151;
    color: #ffffff;
    border-radius: 0.5rem;
    font-size: 1rem;
}

#my-fieldset input[type="text"]::placeholder,
#my-fieldset input[type="email"]::placeholder {
    color: #9ca3af;
}

#my-submit-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1.125rem !important;
    background-color: #f59e0b;
    color: #111827;
    font-weight: 700;
}

#my-submit-button:hover {
    background-color: #d97706;
}

#my-privacy-policy {
    font-size: 0.875rem !important;
    margin-top: 15px;
    color: #9ca3af;
    text-align: center;
}

#my-privacy-policy a {
    color: #f59e0b;
    text-decoration: none;
}

#my-privacy-policy a:hover {
    text-decoration: underline;
}

#thank-you-message {
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 0 10px;
    color: #ffffff;
    text-align: center;
}

#thank-you-message a {
    color: #f59e0b;
    text-decoration: none;
}

#thank-you-message a:hover {
    text-decoration: underline;
}

/* Sparkle animation */
.sparkle {
    position: fixed;
    pointer-events: none;
    animation: sparkleFall linear forwards;
    z-index: 9999;
    font-size: 24px;
    opacity: 0.9;
}

@keyframes sparkleFall {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(var(--x-shift, 0px)) translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive styles */
@media (max-width: 767px) {
    #my-form {
        width: 92%;
        margin: 15px auto;
        padding: 20px;
    }

    #my-form-title {
        font-size: 1.125rem !important;
    }

    #my-submit-button {
        font-size: 1rem !important;
    }

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

    .hero h2 {
        font-size: 1.25rem;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .signup-form {
        flex-direction: column;
    }

    img[src="img/shield.webp"] {
        width: 17.25% !important;
    }
}

/* Performance optimizations */
.slide-section,
.slide-item {
    backface-visibility: hidden;
    perspective: 1000px;
}
