        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Allura&family=Great+Vibes&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f8f8;
            color: #333;
        }
        /* Top bar container */
        .imperial-nova-topbar {
            background-color: #b8941f;
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e0e0e0;
            display: none;
        }
        
        /* Tagline styling */
        .imperial-nova-tagline {
            font-size: 14px;
            letter-spacing: 0.5px;
            color: #555;
            font-weight: 300;
            
        }
        
        /* Social icons container */
        .imperial-nova-socials {
            display: flex;
            gap: 18px;
        }
        
        /* Social icon styling */
        
        .imperial-nova-social-icon {
            color: #777;
            background-color: #b8941f;
            border-radius: 50%;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .imperial-nova-social-icon:hover {
            color: #333;
            transform: translateY(-1px);
        }
        .imperial-nova-social-icon i {
            line-height: 36px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            text-align: center;
        }
        /* Mobile styles */
        @media (max-width: 768px) {
            .imperial-nova-topbar {
                display: none;
            }
            
            .imperial-nova-tagline {
                text-align: center;
                font-size: 13px;
            }
        }

        /* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background-color:#0a0a0a;      
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            z-index: 1000;
            top: 0;
            width: 100%;
        }

        /* Logo Styles */
        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
            width: 150px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            
        }

        .logo-icon img{
            width: 150px;
            height: 100%;
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #d4af37ef;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: #d4af37;
        }

        .nav-links a.active::after {
            width: 100%;
        }

        /* Icons */
        .nav-icons {
            display: flex;
            gap: 1.5rem;
        }

        .nav-icons a {
            color: #f0f0f0;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .nav-icons a:hover {
            color: #d4af37;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #fff;
            margin-right: 0.5em;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: #ffffff;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.4s ease;
            z-index: 1000;
            padding: 80px 30px 30px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-links a {
            text-decoration: none;
            color: #333;
            font-size: 1.1rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 8px 0;
            display: block;
            transition: color 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-links a:hover {
            color: #d4af37;
        }

        .mobile-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .mobile-icons a {
            color: #333;
            font-size: 1.3rem;
            transition: color 0.3s ease;
        }

        .mobile-icons a:hover {
            color: #d4af37;
        }

        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            z-index: 998;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                gap: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-icons {
                display: none;
            }

            .hamburger {
                display: block;
            }
            .logo-container{
                gap: 4px;
                justify-content: space-between;
                width: 120px;
            }
            .logo-text{
                font-size: 1.5rem;
            }
            .logo-container .logo-icon {
                width: 50px;
                height: 50px;
                font-size: 16px;
                margin-bottom: 8px;
            }
            .nova{
                font-size: 1rem;
            }
        }

        /* Hero Section for Demo */
        .hero {
            height: 90vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('https://images.unsplash.com/photo-1523170335258-f5ed11844a49?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1180&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #d4af37;
            color: white;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #b8941f;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
        }
        /* Slide-in animation */
        @keyframes slideFromLeft {
            0% {
                transform: translateX(-100px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        /* Apply animation to hero content */
        .hero-content h1,
        .hero-content p,
        .hero-content .btn {
            animation: slideFromLeft 1s ease-out forwards;
            opacity: 0; /* Start hidden */
        }
        
        /* Optional: stagger animation for each element */
        .hero-content h1 {
            animation-delay: 0.2s;
        }
        
        .hero-content p {
            animation-delay: 0.4s;
        }
        
        .hero-content .btn {
            animation-delay: 0.6s;
        }
    /*Brands Section*/
        .brands-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 20px;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-heading h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            font-weight: 500;
            color: #1a1a1a;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .accent-line {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #b8941f);
            margin: 0 auto;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
        }

        .brand-card {
            background-color: #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 20px;
            height: 140px;
            transition: all 0.4s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }

        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(184, 148, 31, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .brand-logo {
            max-width: 100%;
            max-height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.4s ease;
        }

        .brand-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
        }

        .brand-card:hover::before {
            opacity: 1;
        }

        .brand-card:hover .brand-logo {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .brands-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .brands-section {
                padding: 70px 20px;
            }
            
            .section-heading h2 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 480px) {
            .brands-grid {
                grid-template-columns: repeat(1, 1fr);
            }
            
            .brand-card {
                height: 120px;
            }
            
            .section-heading h2 {
                font-size: 2rem;
            }
        }

        /* Products Section */
        .container-products {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .section-title-products {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 50px;
            color: #222;
            position: relative;
        }

        .section-title-products::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background-color: #d4af37;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
        }

        .all-btn{
            text-align: center;
            margin-top: 30px;
        }

        @media (min-width: 768px) {
            .collections-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .collections-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            padding: 10px;
            width: 100%;
            height: 280px;
            object-fit: contain;
            display: block;
        }

        .divider {
            height: 1px;
            background-color: #d4af37;
            width: 100%;
            margin: 0;
        }

        .product-info {
            padding: 20px;
        }

        .product-name {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: #222;
        }

        .product-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: #d4af37;
        }

        .overlay-products {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.7);
            overflow: hidden;
            width: 100%;
            height: 0;
            transition: height 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        /* Show overlay when hovering on product card */
            .product-card:hover .overlay-products {
                height: 100%;
            }


        .view-details-btn {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            padding: 12px 25px;
            font-size: 0.9rem;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            font-weight: 500;
            text-decoration: none;
        }

        .view-details-btn:hover {
            background-color: white;
            color: #222;
            transform: scale(1.05);
        }

        .cart-icon {
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #222;
            color: white;
            padding: 15px 25px;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateX(150%);
            transition: transform 0.4s ease;
            z-index: 1000;
        }

        .notification.show {
            transform: translateX(0);
        }
        /* Why Choose Us Section */
         .why-choose-us-section {
            display: flex;
            min-height: 100vh;
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .image-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

        .watch-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.1));
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-container:hover .image-overlay {
            opacity: 1;
        }

        .image-container:hover .watch-image {
            transform: scale(1.03);
        }

        .content-container {
            flex: 1;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .accent-line {
            width: 80px;
            height: 2px;
            background-color: #d4af37;
            margin-bottom: 50px;
        }

        .benefits-list {
            list-style: none;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .benefit-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .benefit-icon {
            width: 24px;
            height: 24px;
            background-color: #d4af37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .benefit-icon svg {
            width: 12px;
            height: 12px;
            fill: #f8f8f8;
        }

        .benefit-text {
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .why-choose-us-section {
                flex-direction: column;
                padding: 60px 20px;
            }

            .image-container {
                height: 500px;
                margin-bottom: 40px;
            }

            .content-container {
                padding: 0 20px;
            }

            .section-heading {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .section-heading {
                font-size: 2.4rem;
            }

            .content-container {
                padding: 0 10px;
            }

            .benefit-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .section-heading {
                font-size: 2rem;
            }

            .accent-line {
                margin-bottom: 30px;
            }

            .benefit-item {
                margin-bottom: 20px;
            }
        }

        /* Testimonials Section */
        .testimonials-section {
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        }
        .testimonials-container {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        }

        .testimonial-card {
        background-color: #fff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        flex: 0 0 calc(33.333% - 20px);
        min-width: 280px;
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(20px);
        }

        .testimonial-card.visible {
        opacity: 1;
        transform: translateY(0);
        }

        .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
        }

        .quote-icon {
        color: #d4af37;
        font-size: 24px;
        margin-bottom: 15px;
        display: block;
        }

        .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 25px;
        position: relative;
        padding-left: 10px;
        }

        .client-info {
        display: flex;
        align-items: center;
        }

        .client-photo {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
        border: 2px solid #d4af37;
        }

        .client-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        }

        .client-details h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
        }

        .client-details p {
        font-size: 14px;
        color: #777;
        }

        @media (max-width: 992px) {
        .testimonial-card {
            flex: 0 0 calc(50% - 15px);
        }
        }

        @media (max-width: 768px) {
        .testimonial-card {
            flex: 0 0 100%;
        }

        .section-heading h2 {
            font-size: 36px;
        }
        }

        @media (max-width: 576px) {
        .testimonials-section {
            padding: 60px 15px;
        }

        .section-heading h2 {
            font-size: 32px;
        }
        }

        /*FAQ Section*/
        .faq-container {
        max-width: 1200px;
        margin: 0 auto;
        background: #fff;
        padding: 60px 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-radius: 2px;
        }

        .faq-heading {
        text-align: center;
        font-variant: small-caps;
        font-size: 28px;
        letter-spacing: 3px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
        }

        .faq-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 1px;
        background-color: #c9a96e;
        }

        .faq-item {
        border-top: 1px solid #eee;
        overflow: hidden;
        }

        .faq-item:last-child {
        border-bottom: 1px solid #eee;
        }

        .faq-question {
        padding: 20px 40px 20px 0;
        cursor: pointer;
        position: relative;
        font-weight: 600;
        font-size: 18px;
        transition: color 0.3s ease;
        }

        .faq-question:hover {
        color: #c9a96e;
        }

        .faq-question::after {
        content: '+';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%) rotate(0);
        font-size: 22px;
        color: #c9a96e;
        transition: transform 0.4s ease-in-out, color 0.3s ease;
        }

        .faq-item.active .faq-question::after {
        transform: translateY(-50%) rotate(45deg);
        color: #a88956;
        }

        .faq-answer {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition:
            max-height 0.5s ease-in-out,
            padding 0.4s ease,
            opacity 0.5s ease;
        font-weight: 300;
        font-size: 16px;
        line-height: 1.7;
        color: #666;
        padding: 0 0;
        }

        .faq-item.active .faq-answer {
        max-height: 500px;
        opacity: 1;
        padding: 10px 0 20px;
        }

        @media (max-width: 768px) {
        .faq-container {
            padding: 40px 20px;
            width: 100%;
        }

        .faq-question {
            padding: 15px 30px 15px 0;
            font-size: 16px;
        }
        }

        /* Footer Styles */
        .luxury-footer {
            background-color: #0a0a0a;
            color: #f5f5f5;
            position: relative;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 30px;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 20px;
            letter-spacing: 1px;
            color: #d4af37;
        }

        .brand-column .brand-name {
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 10px;
            color: #f5f5f5;
        }

        .brand-column .tagline {
            font-style: italic;
            margin-bottom: 15px;
            color: #b0b0b0;
        }

        .accent-line {
            width: 50px;
            height: 2px;
            background-color: #d4af37;
            margin: 15px 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .footer-links a:hover {
            color: #d4af37;
            padding-left: 8px;
        }

        .footer-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }

        .footer-links a:hover:after {
            width: 100%;
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #f5f5f5;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #d4af37;
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-btn {
            padding: 12px 20px;
            background: #d4af37;
            color: #0a0a0a;
            border: none;
            font-family: inherit;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #e6c44a;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #f5f5f5;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #d4af37;
            color: #0a0a0a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            margin: 40px 0 20px;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .footer-columns {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 30px;
            }
        }

        @media (max-width: 576px) {
            .footer-columns {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                margin-bottom: 10px;
            }
        }