* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: auto;
}

/* Main Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

/* Main Header Navigation */
.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-icon {
    cursor: pointer;
}

.menu-icon img {
    width: 25px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo-center img {
    height: 60px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-logo {
    clip-path: inset(0 0 0 0);
}

.sticky-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    clip-path: inset(0 100% 0 0);
}

header.scrolled .main-logo {
    clip-path: inset(0 0 0 100%);
}

header.scrolled .sticky-logo {
    clip-path: inset(0 0 0 0);
}

header.scrolled .logo-center img {
    height: 45px;
}

header.scrolled {
    padding: 12px 50px;
}

/* Mobile scrolled header fix */
@media (max-width: 1024px) {
    header.scrolled {
        padding: 10px 15px;
    }
    
    header.scrolled .logo-center img {
        height: 35px;
        max-width: 180px;
    }
}

@media (max-width: 640px) {
    header.scrolled {
        padding: 10px 12px;
    }
    
    header.scrolled .logo-center img {
        height: 38px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    header.scrolled {
        padding: 8px 12px;
    }
    
    header.scrolled .logo-center img {
        height: 40px;
        max-width: 200px;
    }
}

.nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    cursor: pointer;
    transition: opacity 0.3s;
}

.nav-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(1.3);
}

.nav-icon:hover {
    opacity: 0.7;
}

/* Banner Section */
.banner-section {
    margin-top: -80px;
    min-height: 100vh;
    position: relative;
    padding-top: 20px;
}

@media (orientation: landscape) {
    .banner-section {
        padding-top: 30px;
    }
}

.banner-container {
    width: 100%;
    height: 100%;
}

.banner-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0;
}

.mobile-video {
    display: none;
}

.desktop-video {
    display: block;
}

/* Second Banner Section */
.second-banner-section {
    width: 100%;
    background-color: #000;
    position: relative;
    border-top: 1px solid #333;
}

.second-banner-link {
    display: block;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.second-banner-link:hover {
    opacity: 0.9;
}

.second-banner-container {
    width: 100%;
}

.second-banner-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
}

/* Third Banner Section */
.third-banner-section {
    width: 100%;
    background-color: #000;
    position: relative;
    border-top: 1px solid #333;
}

.third-banner-container {
    width: 100%;
}

.third-banner-video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Fourth Banner Section */
.fourth-banner-section {
    width: 100%;
    background-color: #000;
    position: relative;
    border-top: 1px solid #333;
}

.fourth-banner-container {
    width: 100%;
}

.fourth-banner-video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Fifth Banner Section */
.fifth-banner-section {
    width: 100%;
    background-color: #000;
    position: relative;
    border-top: 1px solid #333;
}

.fifth-banner-container {
    width: 100%;
}

.fifth-banner-video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mobile Menu Logo - Hidden on Desktop */
.mobile-menu-logo {
    display: none;
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */

/* Portrait Mode for Tablets and Desktops */
@media (orientation: portrait) and (max-width: 1200px) {
    /* Remove min-height from banner to prevent blank space */
    .banner-section {
        min-height: auto !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .banner-video {
        height: auto !important;
    }

    /* Compact dropdown menu */
    .nav-left .nav-links {
        display: none !important;
        position: absolute;
        top: 60px;
        left: 15px;
        width: 280px;
        max-height: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0;
        z-index: 999;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(212, 175, 55, 0.2);
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .nav-left .nav-links.active {
        display: flex !important;
        max-height: 400px;
        padding: 20px 0;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-left .nav-links a {
        display: block;
        font-size: 13px;
        font-weight: 500;
        padding: 14px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        letter-spacing: 1.2px;
        transition: all 0.3s ease;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .nav-left .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-left .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: linear-gradient(180deg, #d4af37 0%, #f4d03f 100%);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-left .nav-links a:hover::before {
        transform: scaleY(1);
    }

    .nav-left .nav-links a:hover {
        background: rgba(212, 175, 55, 0.1);
        padding-left: 30px;
        color: #d4af37;
    }

    .menu-icon {
        display: flex !important;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .menu-icon:hover {
        transform: scale(1.1);
    }

    .mobile-menu-logo {
        display: none !important;
    }

    .menu-overlay {
        background-color: transparent !important;
    }

    .logo-center img {
        height: 55px;
        max-width: 250px;
    }

    .logo-center .main-logo,
    .logo-center .sticky-logo {
        height: 55px;
        max-width: 250px;
    }

    header {
        padding: 10px 20px;
    }

    header.scrolled {
        padding: 8px 20px;
    }

    header.scrolled .logo-center img,
    header.scrolled .logo-center .main-logo,
    header.scrolled .logo-center .sticky-logo {
        height: 50px;
        max-width: 220px;
    }

    .nav-left {
        gap: 15px;
        padding-left: 5px;
    }

    .menu-icon {
        margin-right: 5px;
    }
}

/* Large Tablets and Small Desktops (1024px and below) - includes iPad Pro, Surface, etc */
@media (max-width: 1024px) and (orientation: landscape) {
    header {
        padding: 10px 15px;
    }

    .nav-left {
        gap: 15px;
    }

    /* Hide desktop nav links on tablets */
    .nav-left .nav-links a {
        display: none;
    }

    /* Mobile menu - slide in from left */
    .nav-left .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 300px !important;
        max-height: none !important;
        height: 100vh !important;
        background: rgba(15, 15, 15, 0.5) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        flex-direction: column;
        padding: 30px 35px 30px 35px !important;
        z-index: 998;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 0 !important;
        box-shadow: 2px 0 30px rgba(0, 0, 0, 0.8) !important;
        overflow-y: auto;
        opacity: 1 !important;
        transform: none !important;
    }

    .nav-left .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
        pointer-events: none;
    }

    .nav-left .nav-links.active {
        left: 0 !important;
    }

    /* Show links when menu is active */
    .nav-left .nav-links.active a {
        display: block;
        font-size: 15px;
        font-weight: 500;
        padding: 14px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        letter-spacing: 1.5px;
        transition: all 0.3s ease;
    }

    .nav-left .nav-links a::before {
        display: none !important;
    }

    .nav-links a:hover {
        padding-left: 10px !important;
        color: #d4af37;
        background: transparent !important;
    }

    .nav-links a:last-child {
        border-bottom: none !important;
    }

    .menu-overlay {
        background-color: rgba(0, 0, 0, 0.7) !important;
    }

    .mobile-menu-logo {
        display: block;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-logo img {
        height: 50px;
        width: auto;
        max-width: 90%;
        object-fit: contain;
    }

    .logo-center img {
        height: 35px;
        max-width: 200px;
    }

    .logo-center .main-logo,
    .logo-center .sticky-logo {
        height: 35px;
        max-width: 200px;
    }

    .menu-icon img {
        width: 20px;
    }

    .nav-icon img {
        width: 20px;
        height: 20px;
    }

    .nav-right {
        gap: 12px;
    }

    .banner-section {
        margin-top: 0;
        min-height: 100vh;
        padding-top: 70px;
    }

    /* Switch to mobile video */
    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }
}

/* Mobile Portrait - Override tablet portrait styles */
@media (max-width: 768px) and (orientation: portrait) {
    /* Fix banner going behind header */
    .banner-section {
        margin-top: 0 !important;
        padding-top: 60px !important;
        min-height: auto !important;
    }

    /* Full-height slide-in menu for mobile */
    .nav-left .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 300px !important;
        max-height: none !important;
        height: 100vh !important;
        background: rgba(15, 15, 15, 0.5) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        padding: 30px 35px !important;
        border-radius: 0 !important;
        border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 2px 0 30px rgba(0, 0, 0, 0.8) !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .nav-left .nav-links.active {
        left: 0 !important;
    }

    .nav-left .nav-links a {
        padding: 14px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .nav-left .nav-links a::before {
        display: none !important;
    }

    .nav-left .nav-links a:hover {
        padding-left: 10px !important;
        background: transparent !important;
    }

    .mobile-menu-logo {
        display: block !important;
    }

    .mobile-menu-logo img {
        height: 55px !important;
        max-width: 180px !important;
        object-fit: contain !important;
        width: auto !important;
    }

    .menu-overlay {
        background-color: rgba(0, 0, 0, 0.7) !important;
    }

    /* Switch to mobile videos */
    .desktop-video {
        display: none !important;
    }

    .mobile-video {
        display: block !important;
    }
}

/* Medium Tablets (900px and below) */
@media (max-width: 900px) {
    header {
        padding: 10px 12px;
    }

    .logo-center img {
        height: 30px;
        max-width: 180px;
    }

    .logo-center .main-logo,
    .logo-center .sticky-logo {
        height: 30px;
        max-width: 180px;
    }

    .menu-icon img {
        width: 18px;
    }

    .nav-icon img {
        width: 18px;
        height: 18px;
    }

    .nav-right {
        gap: 10px;
    }
}

/* Mobile Landscape (640px and below) */
@media (max-width: 640px) {
    header {
        padding: 12px 12px;
    }

    .logo-center img {
        height: 45px;
        max-width: 220px;
    }

    .logo-center .main-logo,
    .logo-center .sticky-logo {
        height: 45px;
        max-width: 220px;
    }

    .menu-icon img {
        width: 20px;
    }

    .nav-icon img {
        width: 20px;
        height: 20px;
    }

    .nav-right {
        gap: 12px;
    }

    .banner-section {
        margin-top: 0;
        min-height: auto;
        padding-top: 60px;
    }
    
    .banner-container {
        height: auto;
    }
    
    .banner-video {
        height: auto;
        object-fit: contain;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    header {
        padding: 12px 12px;
    }

    .logo-center img {
        height: 50px;
        max-width: 240px;
    }

    .logo-center .main-logo,
    .logo-center .sticky-logo {
        height: 50px;
        max-width: 240px;
    }

    .menu-icon img {
        width: 18px;
    }

    .nav-icon img {
        width: 18px;
        height: 18px;
    }

    .nav-right {
        gap: 10px;
    }

    .banner-section {
        margin-top: 0;
        min-height: auto;
        padding-top: 55px;
    }
    
    .banner-container {
        height: auto;
    }
    
    .banner-video {
        height: auto;
        object-fit: contain;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    header {
        padding: 8px 10px;
    }

    .logo-center img {
        height: 30px;
    }

    .logo-center .main-logo,
    .logo-center .sticky-logo {
        height: 30px;
    }

    .menu-icon img {
        width: 16px;
    }

    .nav-icon img {
        width: 16px;
        height: 16px;
    }

    .nav-right {
        gap: 8px;
    }

    .banner-section {
        margin-top: 0;
        min-height: 100vh;
        padding-top: 50px;
    }
}

/* Extra Large Screens (1440px and above) */
@media (min-width: 1440px) {
    header {
        padding: 20px 80px;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .logo-center img {
        height: 70px;
    }

    .logo-center .main-logo,
    .logo-center .sticky-logo {
        height: 70px;
    }

    .nav-icon img {
        width: 26px;
        height: 26px;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 50px 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-column h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.newsletter-form {
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #555;
    color: #fff;
    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form input:focus {
    outline: none;
    border-bottom-color: #fff;
}

.newsletter-text {
    font-size: 10px;
    color: #999;
    line-height: 1.6;
}

.newsletter-text .underline {
    text-decoration: underline;
    color: #999;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #d4af37;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.footer-logo {
    flex: 1;
}

.footer-logo img {
    max-width: 900px;
    width: 100%;
    height: auto;
}

.copyright {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 9px;
    color: #999;
    text-align: right;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .copyright {
        position: static;
        text-align: center;
        margin-top: 15px;
    }

    .footer-logo img {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 20px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-logo img {
        max-width: 400px;
    }

    .copyright {
        font-size: 8px;
    }
}

/* Bottom Grid Section */
.bottom-grid-section {
    width: 100%;
    background-color: #000;
    padding: 40px 0 0 0;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 300px 60px;
    width: 100%;
}

.grid-item {
    background-color: #000;
    border: 1px solid #333;
    border-left: none;
    border-right: none;
}

.grid-large {
    grid-column: 1 / 3;
    grid-row: 1;
    border-right: 1px solid #333;
}

.grid-right {
    grid-column: 3;
    grid-row: 1 / 3;
}

.grid-bottom-left {
    grid-column: 1;
    grid-row: 2;
    border-right: 1px solid #333;
}

.grid-bottom-right {
    grid-column: 2;
    grid-row: 2;
    border-right: 1px solid #333;
}

/* Grid Content Styling */
.grid-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-links-group {
    display: flex;
    gap: 40px;
    height: 100%;
}

.footer-links-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-column h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-links-column a {
    color: #999;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-column a:hover {
    color: #fff;
}

.social-column {
    justify-content: flex-start;
    align-items: flex-start;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.social-icons-footer a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons-footer a:hover {
    color: #999;
}

/* Stay Connected Section */
.stay-connected {
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 80px;
}

.stay-connected h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 15px;
}

.subscribe-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 10px 0;
    color: #fff;
    font-size: 13px;
}

.subscribe-form input::placeholder {
    color: #666;
}

.subscribe-form input:focus {
    outline: none;
    border-bottom-color: #fff;
}

.subscribe-form button {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 5px;
}

.subscribe-form button:hover {
    background: #ff7722;
}

.subscribe-text {
    color: #666;
    font-size: 9px;
    line-height: 1.5;
}

.subscribe-text a {
    color: #666;
    text-decoration: underline;
}

/* Bottom Sections */
.bottom-links {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    padding: 20px 30px;
}

.bottom-links a {
    color: #fff;
    font-size: 11px;
    text-decoration: none;
    transition: color 0.3s;
}

.bottom-links a:hover {
    color: #ccc;
}

.bottom-tagline {
    justify-content: center;
    align-items: flex-start;
    padding: 20px 30px;
}

.bottom-tagline p {
    color: #999;
    font-size: 11px;
    line-height: 1.6;
}

.bottom-tagline p strong,
.bottom-tagline strong {
    color: #fff;
    font-weight: 700;
}

/* Bottom Logo Section */
.bottom-logo-section {
    width: 100%;
    background-color: #000;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.bottom-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Grid Mobile Responsive */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .grid-large {
        grid-column: 1 / 3;
        grid-row: 1;
        border-right: none;
        border-bottom: 1px solid #333;
    }

    .grid-right {
        grid-column: 1 / 3;
        grid-row: 2;
        border-bottom: 1px solid #333;
    }

    .grid-bottom-left {
        grid-column: 1;
        grid-row: 3;
        border-right: 1px solid #333;
    }

    .grid-bottom-right {
        grid-column: 2;
        grid-row: 3;
    }

    .footer-links-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px 20px;
    }

    .social-column {
        grid-column: 1 / 3;
    }

    .grid-content {
        padding: 25px 20px;
    }

    .stay-connected {
        padding-right: 20px;
    }

    .stay-connected h3 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .bottom-grid-section {
        padding: 30px 0 0 0;
    }

    .grid-content {
        padding: 20px 15px;
    }

    .footer-links-column h4 {
        font-size: 13px;
    }

    .footer-links-column a {
        font-size: 11px;
    }

    .stay-connected h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .subscribe-form input {
        font-size: 12px;
        padding: 8px 0;
    }

    .subscribe-form button {
        padding: 10px;
        font-size: 13px;
    }

    .subscribe-text {
        font-size: 8px;
    }

    .bottom-links {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding: 15px;
    }

    .bottom-links a {
        font-size: 10px;
    }

    .bottom-tagline {
        padding: 15px;
    }

    .bottom-tagline p {
        font-size: 10px;
    }

    .social-icons-footer a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .grid-content {
        padding: 15px 12px;
    }

    .stay-connected h3 {
        font-size: 20px;
    }

    .footer-links-column {
        gap: 6px;
    }

    .footer-links-column h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-links-column a {
        font-size: 10px;
    }
}
