:root {
            --primary: #1F3C5F;
            --secondary: #6BA2D9;
            --accent: #F57C51;
            --text: #333333;
            --light-bg: #F5F5F5;
            --white: #FFFFFF;
}
        
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
/* Color Palette */
:root {
    --primary: #1F3C5F;
    --secondary: #6BA2D9;
    --accent: #F57C51;
    --text: #333333;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --neon-yellow: #FFFF00;
    
    /* Native Social Media Colors */
    --strava-orange: #FC4C02;
    --instagram-gradient: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    --facebook-blue: #1877F2;
    --garmin-blue: #007CC3;
}

.top-bar {
    background-color: var(--neon-yellow);
    color: var(--text);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 10px; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

 .events-dropdown {
position: relative;
flex: 1;
min-width: 200px;
}

.dropdown-toggle {
background: linear-gradient(to right, var(--primary), var(--secondary));
color: var(--white);
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 14px;
padding: 8px 16px;
border-radius: 25px;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(31, 60, 95, 0.3);
}

.dropdown-toggle:hover {
background: linear-gradient(to right, var(--secondary), var(--accent));
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(31, 60, 95, 0.4);
}

.dropdown-toggle span {
font-weight: bold;
}

.dropdown-toggle i {
transition: transform 0.3s ease;
}

.events-dropdown.active .dropdown-toggle i {
transform: rotate(180deg);
}

.dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
box-shadow: 0 8px 25px rgba(31, 60, 95, 0.2);
border-radius: 12px;
padding: 20px;
max-width: 350px;
z-index: 1000;
margin-top: 32px;
border: 2px solid var(--secondary);
opacity: 0;
transform: translateY(-10px);
transition: opacity 0.3s ease, transform 0.3s ease;
}

.events-dropdown.active .dropdown-menu {
display: block;
opacity: 1;
transform: translateY(0);
}

.event-item {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 15px;
border-radius: 8px;
margin-bottom: 12px;
transition: all 0.3s ease;
background: var(--white);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
border-left: 4px solid var(--primary);
}

.event-item:hover {
transform: translateX(5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
border-left: 4px solid var(--accent);
}

.event-item:last-child {
margin-bottom: 0;
}

.event-details {
flex: 1;
margin-right: 15px;
}

.event-title {
font-weight: bold;
color: var(--primary);
display: block;
margin-bottom: 5px;
font-size: 15px;
}

.event-register-btn {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: var(--white);
border: none;
padding: 8px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
white-space: nowrap;
box-shadow: 0 2px 8px rgba(31, 60, 95, 0.3);
}

.event-register-btn:hover {
background: linear-gradient(135deg, var(--secondary), var(--accent));
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(31, 60, 95, 0.4);
}

/* Content for demonstration */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .content h1 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .content p {
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .events-dropdown {
                min-width: auto;
                order: 1;
                width: 100%;
                margin-bottom: 10px;
                margin-left: 0px;
                margin-top: 20px;
            }
            
            .dropdown-toggle {
                justify-content: center;
                width: 100%; 
            }
            
            .dropdown-menu {
                left: 50%;
                transform: translateX(-50%) ;
                min-width: 90%;
                max-width: 400px;
            }
            
            .events-dropdown.active .dropdown-menu {
                transform: translateX(-50%) translateY(0);
            }
        }

        @media (max-width: 575px) {
            .event-item {
                flex-direction: column;
                text-align: center;
            }
            
            .event-details {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .btn-text-short {
                display: inline;
            }
            
            .btn-text-full {
                display: none;
            }
        }

.next-event {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 300px;
}

.next-event span {
    font-weight: bold;
    margin-right: 10px;
    color: var(--primary);
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.phone {
    display: flex;
    align-items: center;
    color: var(--text);
}

.phone i {
    margin-right: 5px;
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.social-icons a:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Native Social Media Colors */
.strava-icon {
    color: var(--strava-orange) !important;
}

.instagram-icon {
    background: var(--instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.facebook-icon {
    color: var(--facebook-blue) !important;
}

.garmin-icon {
    color: var(--garmin-blue) !important;
}

/* Register Button */ 
.register-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(31, 60, 95, 0.2);
    white-space: nowrap;
    text-decoration: none; /* 👈 Remove underline for anchor elements */
    margin-right: 20px;
}

.register-btn:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 60, 95, 0.3);
    text-decoration: none;
}

.register-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(31, 60, 95, 0.2);
}

 

.member-btn {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(31, 60, 95, 0.2);
    white-space: nowrap;
    text-decoration: none; /* 👈 Remove underline for anchor elements */
}
.member-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 60, 95, 0.3);
    text-decoration: none;
}
.member-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(31, 60, 95, 0.2);
}

/* Responsive Text Control */
.btn-text-full {
    display: inline;
}

.btn-text-short {
    display: none;
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
    .top-bar {
        padding: 10px 8%;
        font-size: 15px;
    }
    
    .contact-social {
        gap: 25px;
    }
    
    .social-icons {
        gap: 18px;
    }
    
    .social-icons a {
        font-size: 20px;
    }
    
    .register-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Desktop - 992px to 1199px */
@media (max-width: 1199px) and (min-width: 992px) {
    .top-bar {
        padding: 8px 6%;
    }
    
    .contact-social {
        gap: 18px;
    }
    
    .social-icons {
        gap: 12px;
    }
}

/* Tablet - 768px to 991px */
@media (max-width: 991px) and (min-width: 768px) {
    .top-bar {
        padding: 8px 4%;
        font-size: 13px;
        gap: 15px;
    }
    
    .next-event {
        min-width: 250px;
        flex: 1;
    }
    
    .contact-social {
        gap: 15px;
        justify-content: flex-end;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icons a {
        font-size: 16px;
    }
    
    .register-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* Large Mobile - 576px to 767px */
@media (max-width: 767px) and (min-width: 576px) {
    .top-bar {
        padding: 10px 3%;
        font-size: 13px;
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .next-event {
        min-width: auto;
        justify-content: center;
        text-align: center;
        order: 1;
    }
    
    .contact-social {
        order: 2;
        justify-content: center;
        gap: 20px;
        margin-top: 5px;
    }
    
    .phone {
        order: 1;
    }
    
    .social-icons {
        order: 2;
        gap: 15px;
    }
    
    .register-btn {
        order: 3;
        padding: 8px 16px;
        font-size: 12px;
        align-self: center;
    }
}

/* Small Mobile - 480px to 575px */
@media (max-width: 575px) and (min-width: 480px) {
    .top-bar {
        padding: 12px 4%;
        font-size: 12px;
        gap: 10px;
        flex-direction: column;
    }
    
    .next-event {
        min-width: auto;
        justify-content: center;
        text-align: center;
    }
    
    .next-event span {
        margin-right: 8px;
    }
    
    .contact-social {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .phone {
        margin-bottom: 8px;
        justify-content: center;
    }
    
    .social-icons {
        gap: 12px;
        justify-content: center;
    }
    
    .social-icons a {
        font-size: 16px;
    }
    
    .register-btn {
        padding: 8px 14px;
        font-size: 11px;
        margin-top: 5px;
        align-self: center;
    }
    
    .btn-text-short {
        display: inline;
    }
    
    .btn-text-full {
        display: none;
    }
}

/* Extra Small Mobile - up to 479px */
@media (max-width: 479px) {
    .top-bar {
        padding: 10px 3%;
        font-size: 15px;
        gap: 8px;
        flex-direction: column;
        text-align: center; 
    }
    
    .next-event {
        min-width: auto;
        flex-direction: column;
        gap: 5px;
    }
    
    .next-event span {
        margin-right: 0;
        margin-bottom: 3px;
    }
    
    .contact-social {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .phone {
        justify-content: center;
        font-size: 11px;
    }
    
    .phone i {
        margin-right: 4px;
    }
    
    .social-icons {
        gap: 15px;
        justify-content: center;
    }
    
    .social-icons a {
        font-size: 18px;
        padding: 8px;
        min-width: 40px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .register-btn {
        padding: 10px 16px;
        font-size: 11px;
        margin-top: 5px;
        width: fit-content;
        align-self: center;
    }
    
    .btn-text-short {
        display: inline;
    }
    
    .btn-text-full {
        display: none;
    }
}

        
/* Main Header */
header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  
}
        
.header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%; 
            margin: 0 auto;
}
        
.logo {
            height: 100px;
}
        
.nav-links {
            display: flex;
            list-style: none;
}
        
.nav-links li {
            margin-left: 30px;
            position: relative;
}
        
.nav-links a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            transition: color 0.3s;
            padding: 5px 0;
}
        
.nav-links a:hover {
            color: var(--accent);
}
        
.nav-links li.active a {
            color: var(--accent);
}
        
.nav-links li.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent);
}

/* Cart Link Special Styling */
.cart-item .nav-link {
    position: relative;
    padding: 12px;
    border-radius: 50%;
    background: var(--light-bg);
    transition: all 0.3s ease;
}

.cart-item .nav-link:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
 

.cta-button {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(107, 162, 217, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::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.6s ease;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 162, 217, 0.5);
    background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(107, 162, 217, 0.3);
}

.cta-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

.cta-button span {
    font-weight: 700;
    position: relative;
    z-index: 1;
}
        
/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 3.8rem;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 50px;
    margin-right: 60px;
}

.hamburger:hover {
    color: var(--accent);
}

.hamburger.active {
    color: var(--accent);
}

/* Hamburger Lines */
.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: currentColor;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 60, 95, 0.45); /* tinted with --primary */
    backdrop-filter: blur(4px);
    z-index: 1200; /* sit above page content */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Compact, elevated mobile menu using core colors */
.mobile-menu {
    position: fixed;
    top: 80px;                       /* leave space for top bar */
    right: -320px;
    width: 280px;                    /* slightly narrower */
    height: calc(100vh - 100px);     /* shorter than full height */
    margin-top: 12px;
    background: linear-gradient(180deg, var(--white) 0%, rgba(107,162,217,0.03) 100%);
    border-left: 1px solid rgba(31,60,95,0.06);
    border-radius: 12px 0 0 12px;
    box-shadow: 0 20px 45px rgba(31, 60, 95, 0.18);
    z-index: 1250;                   /* ensure it floats above other sections */
    transition: right 0.28s cubic-bezier(.2,.9,.2,1), opacity 0.28s;
    overflow-y: auto;
    padding: 14px 0;
    -webkit-overflow-scrolling: touch;
    opacity: 0.98;
}

.mobile-menu.active {
    right: 12px; /* visible state offset from edge */
}

/* Mobile header inside menu */
.mobile-menu-header {
    padding: 0 18px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.close-menu:hover {
    color: var(--accent);
}

/* Mobile Links */
.mobile-links {
    list-style: none;
    padding: 8px 12px;
    margin: 0;
}

.mobile-links li {
    margin-bottom: 8px;
    opacity: 1;
    transform: none;
    animation: none; /* keep subtle by default */
}

.mobile-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.12s ease, box-shadow 0.18s ease;
    background: transparent;
}


.mobile-links a:hover,
.mobile-links li.active a {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: translateX(-4px);
    box-shadow: 0 6px 18px rgba(31, 60, 95, 0.12);
}

/* CTA button inside menu */
.mobile-cta {
    padding: 16px;
    border-top: 1px solid rgba(31,60,95,0.04);
    margin-top: 8px;
}

.mobile-cta-button {
    width: calc(100% - 28px);
    margin: 0 14px;
    padding: 12px 14px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.mobile-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(31,60,95,0.14);
}

/* Disable scrolling when menu is open */
.no-scroll {
    overflow: hidden;
}

/* Animations */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered animation for menu items */
.mobile-links li:nth-child(1) { animation-delay: 0.1s; }
.mobile-links li:nth-child(2) { animation-delay: 0.15s; }
.mobile-links li:nth-child(3) { animation-delay: 0.2s; }
.mobile-links li:nth-child(4) { animation-delay: 0.25s; }
.mobile-links li:nth-child(5) { animation-delay: 0.3s; }
.mobile-links li:nth-child(6) { animation-delay: 0.35s; }
.mobile-links li:nth-child(7) { animation-delay: 0.4s; }

 /* Mobile Devices (320px - 480px) */
@media screen and (max-width: 480px) { 
    
    .header-container {
        padding: 10px 3%;
        flex-wrap: wrap;
    }
    
    .logo {
        height: 60px;
        flex-shrink: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
        margin-left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 20px;
        display: block;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        margin-right: 20px;
        font-size: 2.5rem;
    }
    
    .nav-links li.active::after {
        bottom: 10px;
        width: 80%;
        left: 10%;
    }
}

/* Small Tablets (481px - 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .header-container {
        padding: 12px 4%;
    }
    
    .logo {
        height: 70px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 350px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        margin-left: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 20px;
        display: block;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
        margin-right: 40px;
        font-size: 3rem;
    }
}

/* Large Tablets (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .header-container {
        padding: 15px 4%;
    }
    
    .logo {
        height: 80px;
    }
    
    .nav-links li {
        margin-left: 20px;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    .hamburger {
        display: none;
    }
}

/* Small Desktops (1025px - 1200px) */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .header-container {
        padding: 15px 4%;
    }
    
    .logo {
        height: 90px;
    }
    
    .nav-links li {
        margin-left: 25px;
    }
}

/* Extra Small Mobile (max-width: 320px) */
@media screen and (max-width: 320px) {
    .header-container {
        padding: 8px 2%;
    }
    
    .logo {
        height: 50px;
    }
    
    .hamburger {
        margin-right: 10px;
        font-size: 2.2rem;
        width: 25px;
        height: 40px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
}

/* Landscape Mobile Orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        padding: 20px;
    }
    
    .nav-links li {
        margin: 10px 15px;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 1rem;
    }
}

:root {
            --primary: #1F3C5F;
            --secondary: #6BA2D9;
            --accent: #F57C51;
            --text: #333333;
            --light-bg: #F5F5F5;
            --white: #FFFFFF;
            --neon-yellow: #FFFF00;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: linear-gradient(135deg, var(--light-bg) 0%, #e8f4f8 100%);
            min-height: 100vh;
        }

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

        .page-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(31, 60, 95, 0.3);
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-20px, -20px) rotate(180deg); }
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }

        .page-header p {
            font-size: 1.3rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .blog-section {
            margin-bottom: 60px;
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .section-header {
            background: linear-gradient(135deg, var(--accent) 0%, #ff6b35 100%);
            color: var(--white);
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .section-header::after {
            content: '';
            position: absolute;
            top: 0;
            right: -50px;
            width: 100px;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: skew(-15deg);
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-header .date {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: normal;
        }

        .section-content {
            padding: 40px 30px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
        }

        .blog-card {
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
            border-radius: 15px;
            padding: 25px;
            border-left: 5px solid var(--secondary);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .blog-card:hover::before {
            opacity: 0.05;
        }

        .blog-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(107, 162, 217, 0.3);
            border-left-color: var(--accent);
        }

        .blog-card-content {
            position: relative;
            z-index: 1;
        }

        .blog-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .blog-date {
            color: var(--secondary);
            font-size: 0.9rem;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .blog-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(31, 60, 95, 0.3);
        }

        .blog-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(31, 60, 95, 0.4);
            background: linear-gradient(135deg, var(--accent) 0%, #ff6b35 100%);
        }

        .journey-placeholder {
            text-align: center;
            padding: 50px 20px;
            background: linear-gradient(135deg, var(--light-bg) 0%, rgba(107, 162, 217, 0.1) 100%);
            border-radius: 15px;
            border: 2px dashed var(--secondary);
            margin: 20px 0;
        }

        .journey-placeholder i {
            font-size: 4rem;
            color: var(--secondary);
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.1); opacity: 1; }
        }

        .journey-placeholder h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .journey-placeholder p {
            color: var(--text);
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Tablet Media Query */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .page-header {
        margin-bottom: 35px;
        padding: 30px 15px;
        border-radius: 15px;
    }

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .blog-section {
        margin-bottom: 40px;
        border-radius: 15px;
    }

    .section-header {
        padding: 25px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 8px;
        gap: 12px;
    }

    .section-header .date {
        font-size: 0.9rem;
    }

    .section-content {
        padding: 30px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card {
        padding: 20px;
        border-radius: 12px;
    }

    .blog-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
        gap: 8px;
    }

    .blog-date {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .blog-link {
        padding: 10px 18px;
        border-radius: 20px;
        gap: 6px;
    }

    .journey-placeholder {
        padding: 40px 15px;
        margin: 15px 0;
    }

    .journey-placeholder i {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .journey-placeholder h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .journey-placeholder p {
        font-size: 1rem;
    }
}

/* Mobile Media Query */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .page-header {
        margin-bottom: 25px;
        padding: 20px 12px;
        border-radius: 12px;
    }

    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 1rem;
    }

    .blog-section {
        margin-bottom: 30px;
        border-radius: 12px;
    }

    .blog-section:hover {
        transform: translateY(-2px);
    }

    .section-header {
        padding: 20px 15px;
    }

    .section-header::after {
        right: -30px;
        width: 60px;
    }

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 6px;
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header .date {
        font-size: 0.8rem;
    }

    .section-content {
        padding: 20px 15px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .blog-card {
        padding: 15px;
        border-radius: 10px;
        border-left-width: 3px;
    }

    .blog-card:hover {
        transform: translateY(-2px);
    }

    .blog-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
        gap: 6px;
    }

    .blog-date {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .blog-link {
        padding: 8px 15px;
        border-radius: 18px;
        gap: 5px;
        font-size: 0.9rem;
    }

    .blog-link:hover {
        transform: translateY(-1px);
    }

    .journey-placeholder {
        padding: 30px 12px;
        margin: 12px 0;
        border-radius: 12px;
    }

    .journey-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .journey-placeholder h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .journey-placeholder p {
        font-size: 0.95rem;
    }
}

        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(31, 60, 95, 0.1);
            z-index: 1000;
        }

        .scroll-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--accent) 0%, var(--neon-yellow) 100%);
            width: 0%;
            transition: width 0.1s ease;
        }


:root {
            --primary: #1F3C5F;
            --secondary: #6BA2D9;
            --accent: #F57C51;
            --text: #333333;
            --light-bg: #F5F5F5;
            --white: #FFFFFF;
            --neon-yellow: #FFFF00;
            --youtube-red: #FF0000;
            --instagram-gradient: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
            --tiktok-black: #000000;
            --tiktok-pink: #FF0050;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: linear-gradient(135deg, var(--light-bg) 0%, #e8f4f8 100%);
            min-height: 100vh;
        }

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

        .page-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(31, 60, 95, 0.3);
            position: relative; 
            z-index: 1;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-20px, -20px) rotate(180deg); }
        }

        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }

        .page-header p {
            font-size: 1.3rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .video-section {
            margin-bottom: 60px;
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .section-header {
            color: var(--white);
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .section-header.youtube {
            background: linear-gradient(135deg, var(--youtube-red) 0%, #cc0000 100%);
        }

        .section-header.instagram {
            background: var(--instagram-gradient);
        }

        .section-header.tiktok {
            background: linear-gradient(135deg, var(--tiktok-black) 0%, #333333 100%);
        }

        .section-header::after {
            content: '';
            position: absolute;
            top: 0;
            right: -50px;
            width: 100px;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: skew(-15deg);
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-header .video-count {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: normal;
        }

        .section-content {
            padding: 40px 30px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 25px;
        }

        .video-card {
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
            border-radius: 15px;
            overflow: hidden;
            border-left: 5px solid var(--secondary);
            transition: all 0.3s ease;
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }

        .video-card.youtube {
            border-left-color: var(--youtube-red);
        }

        .video-card.instagram {
            border-left: 5px solid;
            border-image: var(--instagram-gradient) 1;
        }

        .video-card.tiktok {
            border-left-color: var(--tiktok-pink);
        }

        .video-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .video-card:hover::before {
            opacity: 0.05;
        }

        .video-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(107, 162, 217, 0.3);
        }

        .video-thumbnail {
            position: relative;
            height: 200px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-thumbnail::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .play-button {
            position: relative;
            z-index: 2;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .play-button:hover {
            transform: scale(1.1);
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .video-card-content {
            padding: 25px;
            position: relative;
            z-index: 1;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .platform-badge {
            display: inline-block;
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
            width: fit-content;
        }

        .platform-badge.youtube {
            background: var(--youtube-red);
        }

        .platform-badge.instagram {
            background: var(--instagram-gradient);
        }

        .platform-badge.tiktok {
            background: var(--tiktok-black);
        }

        .video-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.4;
            flex-grow: 1;
        }

        .video-date {
            color: var(--secondary);
            font-size: 0.95rem;
            margin-bottom: 20px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .video-description {
            color: var(--text);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.85;
            flex-grow: 1;
        }

        .video-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--white);
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(31, 60, 95, 0.3);
            margin-top: auto;
        }

        .video-link.youtube {
            background: linear-gradient(135deg, var(--youtube-red) 0%, #cc0000 100%);
        }

        .video-link.instagram {
            background: var(--instagram-gradient);
        }

        .video-link.tiktok {
            background: linear-gradient(135deg, var(--tiktok-black) 0%, var(--tiktok-pink) 100%);
        }

        .video-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(31, 60, 95, 0.4);
        }

        .placeholder-section {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, var(--light-bg) 0%, rgba(107, 162, 217, 0.1) 100%);
            border-radius: 15px;
            border: 2px dashed var(--secondary);
            margin: 20px 0;
        }

        .placeholder-section i {
            font-size: 4rem;
            color: var(--secondary);
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.1); opacity: 1; }
        }

        .placeholder-section h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .placeholder-section p {
            color: var(--text);
            font-size: 1.1rem;
            opacity: 0.8;
        }

        .stats-bar {
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: linear-gradient(135deg, rgba(31, 60, 95, 0.1) 0%, rgba(107, 162, 217, 0.1) 100%);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 50px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text);
            opacity: 0.8;
        }

       /* Tablet and Small Desktop */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 15px;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .page-header p {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
    }

    .video-card {
        min-height: 260px;
    }

    .video-thumbnail {
        height: 180px;
    }

    .section-content {
        padding: 30px 25px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .page-header {
        margin-bottom: 30px;
        padding: 30px 15px;
        border-radius: 15px;
    }

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .section-header {
        padding: 25px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .section-header .video-count {
        font-size: 0.9rem;
    }

    .video-section {
        margin-bottom: 40px;
        border-radius: 15px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-card {
        min-height: auto;
        border-radius: 12px;
    }

    .video-thumbnail {
        height: 160px;
    }

    .video-card-content {
        padding: 20px;
    }

    .video-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .video-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .video-link {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .section-content {
        padding: 25px 15px;
    }

    .stats-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
    }

    .stat-item {
        padding: 10px;
        width: 100%;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .placeholder-section {
        padding: 40px 15px;
        margin: 15px 0;
    }

    .placeholder-section i {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .placeholder-section h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .placeholder-section p {
        font-size: 1rem;
    }

    .video-overlay iframe {
        max-width: 95%;
        max-height: 80%;
    }

    .close-overlay {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Mobile Medium */
@media (max-width: 480px) {
    .container {
        padding: 8px;
    }

    .page-header {
        padding: 25px 12px;
        margin-bottom: 25px;
    }

    .page-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .page-header p {
        font-size: 1rem;
    }

    .section-header {
        padding: 20px 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .video-thumbnail {
        height: 140px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .video-card-content {
        padding: 15px;
    }

    .video-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .video-date {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .video-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .video-link {
        padding: 8px 15px;
        font-size: 0.85rem;
        border-radius: 20px;
    }

    .section-content {
        padding: 20px 12px;
    }

    .stats-bar {
        padding: 15px 10px;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .placeholder-section {
        padding: 30px 12px;
        border-radius: 12px;
    }

    .placeholder-section i {
        font-size: 2.5rem;
    }

    .placeholder-section h3 {
        font-size: 1.3rem;
    }

    .placeholder-section p {
        font-size: 0.95rem;
    }
}

/* Mobile Small */
@media (max-width: 320px) {
    .container {
        padding: 5px;
    }

    .page-header {
        padding: 20px 10px;
        border-radius: 12px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .section-header {
        padding: 15px 12px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .video-thumbnail {
        height: 120px;
    }

    .play-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .video-card-content {
        padding: 12px;
    }

    .video-title {
        font-size: 1rem;
    }

    .video-date {
        font-size: 0.8rem;
    }

    .video-description {
        font-size: 0.85rem;
    }

    .video-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .section-content {
        padding: 15px 8px;
    }

    .stats-bar {
        padding: 12px 8px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .placeholder-section {
        padding: 25px 8px;
    }

    .placeholder-section i {
        font-size: 2rem;
    }

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

    .placeholder-section p {
        font-size: 0.9rem;
    }
}

        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(31, 60, 95, 0.1);
            z-index: 1000;
        }

        .scroll-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--accent) 0%, var(--neon-yellow) 100%);
            width: 0%;
            transition: width 0.1s ease;
        }

        .video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        .video-overlay.active {
            display: flex;
        }

        .video-overlay iframe {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
        }

        .close-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-overlay:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
/* Color Palette */
:root {
    --primary: #1F3C5F;
    --secondary: #6BA2D9;
    --accent: #F57C51;
    --text: #333333;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --neon-yellow: #FFFF00;
    
    /* Native Social Media Colors */
    --strava-orange: #FC4C02;
    --instagram-gradient: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    --facebook-blue: #1877F2;
    --garmin-blue: #007CC3;
}

/* Footer Styles */
.site-footer {
    background-color: var(--neon-yellow);
    color: var(--text);
    padding: 60px 5% 30px;
    font-size: 0.95rem;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-heading {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 2px;
}

.footer-about {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text);
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    background-color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Native Social Media Colors */
.footer-social .facebook-icon {
    color: var(--facebook-blue) !important;
}

.footer-social .facebook-icon:hover {
    background-color: var(--facebook-blue);
    color: var(--white) !important;
}
 
.footer-social .strava-icon {
    color: var(--strava-orange) !important;
}

.footer-social .strava-icon:hover {
    background-color: var(--strava-orange);
    color: var(--white) !important;
}

.footer-social .garmin-icon {
    color: var(--garmin-blue) !important;
}

.footer-social .garmin-icon:hover {
    background-color: var(--garmin-blue);
    color: var(--white) !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text);
    font-weight: 500;
}

.footer-contact i {
    margin-right: 12px;
    color: var(--primary);
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    padding: 14px 16px;
    border: none;
    font-size: 0.9rem;
    outline: none;
    background-color: var(--white);
    color: var(--text);
    border-radius: 6px;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 14px 24px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-radius: 6px;
    white-space: nowrap;
    min-width: 120px;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    transform: translateX(-2px);
}

.footer-notes {
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.8;
    font-weight: 500;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 2px solid rgba(31, 60, 95, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.legal-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary);
}

.legal-links a:hover::before {
    width: 100%;
}

/* Footer Media Queries */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .site-footer {
        padding: 50px 4% 25px;
    }
    
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 35px;
    }
    
    .footer-column {
        margin-bottom: 25px;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr auto;
        margin-bottom: 12px;
    }
    
    .newsletter-form button {
        min-width: 100px;
        padding: 14px 20px;
    }
}

/* Medium tablets */
@media (max-width: 768px) {
    .site-footer {
        padding: 45px 3% 20px;
        font-size: 0.9rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .footer-heading::after {
        width: 40px;
        height: 2px;
    }
    
    .footer-about {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-contact li {
        margin-bottom: 12px;
    }
    
    .footer-contact i {
        margin-right: 10px;
        width: 18px;
        font-size: 14px;
    }
    
    .newsletter-form {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .newsletter-form input {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .newsletter-form button {
        padding: 12px 18px;
        font-size: 0.85rem;
        min-width: 90px;
    }
    
    .footer-notes {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding-top: 25px;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-links {
        gap: 15px;
    }
}

/* Small tablets and large phones */
@media (max-width: 640px) {
    .site-footer {
        padding: 40px 3% 18px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
        width: 35px;
    }
    
    .footer-about {
        text-align: center;
        margin-bottom: 12px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 10px;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-contact {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-contact li {
        margin-bottom: 10px;
        justify-content: flex-start;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 300px;
        margin: 0 auto 10px;
    }
    
    .newsletter-form input {
        padding: 12px 14px;
        text-align: center;
    }
    
    .newsletter-form button {
        padding: 12px 16px;
        min-width: auto;
        width: 100%;
    }
    
    .footer-bottom {
        padding-top: 20px;
        gap: 12px;
    }
    
    .legal-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .site-footer {
        padding: 35px 4% 15px;
        font-size: 0.85rem;
    }
    
    .footer-container {
        gap: 20px;
    }
    
    .footer-column {
        margin-bottom: 12px;
    }
    
    .footer-heading {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .footer-heading::after {
        width: 30px;
        height: 2px;
    }
    
    .footer-about {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .footer-links {
        font-size: 0.85rem;
    }
    
    .footer-links li {
        margin-bottom: 6px;
    }
    
    .footer-contact {
        font-size: 0.85rem;
        max-width: 280px;
    }
    
    .footer-contact li {
        margin-bottom: 8px;
    }
    
    .footer-contact i {
        margin-right: 8px;
        width: 16px;
        font-size: 13px;
    }
    
    .newsletter-form {
        max-width: 280px;
        margin-bottom: 8px;
    }
    
    .newsletter-form input {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .newsletter-form button {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .footer-notes {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .footer-bottom {
        padding-top: 18px;
        font-size: 0.75rem;
        gap: 10px;
    }
    
    .legal-links {
        gap: 10px;
    }
    
    .legal-links a {
        font-size: 0.75rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .site-footer {
        padding: 30px 3% 12px;
    }
    
    .footer-container {
        gap: 18px;
    }
    
    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .footer-heading::after {
        width: 25px;
    }
    
    .footer-about {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .footer-social {
        gap: 6px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .footer-links {
        font-size: 0.8rem;
    }
    
    .footer-contact {
        font-size: 0.8rem;
        max-width: 260px;
    }
    
    .footer-contact i {
        margin-right: 6px;
        width: 14px;
        font-size: 12px;
    }
    
    .newsletter-form {
        max-width: 260px;
        gap: 6px;
    }
    
    .newsletter-form input {
        padding: 9px 10px;
        font-size: 0.75rem;
    }
    
    .newsletter-form button {
        padding: 9px 12px;
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 0.7rem;
        gap: 8px;
    }
    
    .legal-links {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    
    .legal-links a {
        font-size: 0.7rem;
    }
}

/* Landscape orientation adjustments for small screens */
@media (max-width: 640px) and (orientation: landscape) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-heading {
        text-align: left;
    }
    
    .footer-heading::after {
        left: 0;
        transform: none;
    }
    
    .footer-about {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .newsletter-form {
        margin: 0 0 10px 0;
    }
}

/* Enhanced animations for better UX */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced animations for better UX */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Footer Media Queries */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .site-footer {
        padding: 50px 4% 25px;
    }
    
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 35px;
    }
    
    .footer-column {
        margin-bottom: 25px;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr auto;
        margin-bottom: 12px;
    }
    
    .newsletter-form button {
        min-width: 100px;
        padding: 14px 20px;
    }
}

/* Medium tablets */
@media (max-width: 768px) {
    .site-footer {
        padding: 45px 3% 20px;
        font-size: 0.9rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .footer-heading::after {
        width: 40px;
        height: 2px;
    }
    
    .footer-about {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-contact li {
        margin-bottom: 12px;
    }
    
    .footer-contact i {
        margin-right: 10px;
        width: 18px;
        font-size: 14px;
    }
    
    .newsletter-form {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .newsletter-form input {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .newsletter-form button {
        padding: 12px 18px;
        font-size: 0.85rem;
        min-width: 90px;
    }
    
    .footer-notes {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding-top: 25px;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-links {
        gap: 15px;
    }
}

/* Small tablets and large phones */
@media (max-width: 640px) {
    .site-footer {
        padding: 40px 3% 18px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        margin-bottom: 15px;
        text-align: center;
        animation: fadeInUp 0.5s ease-out;
    }
    
    /* Adjusted animation delays for single column layout */
    .footer-column:nth-child(1) { animation-delay: 0.1s; }
    .footer-column:nth-child(2) { animation-delay: 0.15s; }
    .footer-column:nth-child(3) { animation-delay: 0.2s; }
    .footer-column:nth-child(4) { animation-delay: 0.25s; }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
        width: 35px;
    }
    
    .footer-about {
        text-align: center;
        margin-bottom: 12px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 10px;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-contact {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-contact li {
        margin-bottom: 10px;
        justify-content: flex-start;
    }
    
    .newsletter-form {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 300px;
        margin: 0 auto 10px;
    }
    
    .newsletter-form input {
        padding: 12px 14px;
        text-align: center;
    }
    
    .newsletter-form button {
        padding: 12px 16px;
        min-width: auto;
        width: 100%;
    }
    
    .footer-bottom {
        padding-top: 20px;
        gap: 12px;
    }
    
    .legal-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .site-footer {
        padding: 35px 4% 15px;
        font-size: 0.85rem;
    }
    
    .footer-container {
        gap: 20px;
    }
    
    .footer-column {
        margin-bottom: 12px;
        animation: fadeInUp 0.4s ease-out;
    }
    
    /* Faster animations for mobile */
    .footer-column:nth-child(1) { animation-delay: 0.05s; }
    .footer-column:nth-child(2) { animation-delay: 0.1s; }
    .footer-column:nth-child(3) { animation-delay: 0.15s; }
    .footer-column:nth-child(4) { animation-delay: 0.2s; }
    
    .footer-heading {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .footer-heading::after {
        width: 30px;
        height: 2px;
    }
    
    .footer-about {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .footer-links {
        font-size: 0.85rem;
    }
    
    .footer-links li {
        margin-bottom: 6px;
    }
    
    .footer-contact {
        font-size: 0.85rem;
        max-width: 280px;
    }
    
    .footer-contact li {
        margin-bottom: 8px;
    }
    
    .footer-contact i {
        margin-right: 8px;
        width: 16px;
        font-size: 13px;
    }
    
    .newsletter-form {
        max-width: 280px;
        margin-bottom: 8px;
    }
    
    .newsletter-form input {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .newsletter-form button {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .footer-notes {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .footer-bottom {
        padding-top: 18px;
        font-size: 0.75rem;
        gap: 10px;
    }
    
    .legal-links {
        gap: 10px;
    }
    
    .legal-links a {
        font-size: 0.75rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .site-footer {
        padding: 30px 3% 12px;
    }
    
    .footer-container {
        gap: 18px;
    }
    
    .footer-column {
        animation: fadeInUp 0.3s ease-out;
    }
    
    /* Very fast animations for small screens */
    .footer-column:nth-child(1) { animation-delay: 0.03s; }
    .footer-column:nth-child(2) { animation-delay: 0.06s; }
    .footer-column:nth-child(3) { animation-delay: 0.09s; }
    .footer-column:nth-child(4) { animation-delay: 0.12s; }
    
    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .footer-heading::after {
        width: 25px;
    }
    
    .footer-about {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .footer-social {
        gap: 6px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .footer-links {
        font-size: 0.8rem;
    }
    
    .footer-contact {
        font-size: 0.8rem;
        max-width: 260px;
    }
    
    .footer-contact i {
        margin-right: 6px;
        width: 14px;
        font-size: 12px;
    }
    
    .newsletter-form {
        max-width: 260px;
        gap: 6px;
    }
    
    .newsletter-form input {
        padding: 9px 10px;
        font-size: 0.75rem;
    }
    
    .newsletter-form button {
        padding: 9px 12px;
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 0.7rem;
        gap: 8px;
    }
    
    .legal-links {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    
    .legal-links a {
        font-size: 0.7rem;
    }
}

/* Landscape orientation adjustments for small screens */
@media (max-width: 640px) and (orientation: landscape) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-column {
        text-align: left;
        animation: fadeInUp 0.4s ease-out;
    }
    
    /* Adjusted delays for 2-column landscape layout */
    .footer-column:nth-child(1) { animation-delay: 0.1s; }
    .footer-column:nth-child(2) { animation-delay: 0.1s; }
    .footer-column:nth-child(3) { animation-delay: 0.2s; }
    .footer-column:nth-child(4) { animation-delay: 0.2s; }
    
    .footer-heading {
        text-align: left;
    }
    
    .footer-heading::after {
        left: 0;
        transform: none;
    }
    
    .footer-about {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-links {
        text-align: left;
    }
    
    .newsletter-form {
        margin: 0 0 10px 0;
    }
}