        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Header & Navigation
        header {
            background: linear-gradient(135deg,#171D37 0%, #171D37 100%);
            opacity:0.9;
            color: white;
            padding: 0.5rem 0 0 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .logo {
            gap:0;
        }
        @media (min-width: 800px) {
            nav {
                max-width: 1900px;
                margin: 0 auto;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0 2rem;
                position: relative; 
            }


            .nav-links a:hover {
                color: #DEAC0D;
            }

          
            .logo {
                font-size: 1.8rem;
                font-weight: bold;
                color: #DEAC0D;
            }
        } */

        /* Header & Navigation */
        header {
            background: linear-gradient(135deg,#171D37 0%, #171D37 100%);
            color: white;
            padding: 0.5rem 0;
            position: fixed;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            width: 100%;
            opacity:0.9;

        }

    nav {
        background: rgba(23, 29, 55, 0.95); /* Hier de opacity */
        position: relative;
    }

    .logo {
        gap:0;
    }

    @media (min-width: 800px) {
        nav {
            max-width: 1900px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .nav-links a:hover {
            color: #DEAC0D;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #DEAC0D;
        }
    }

        
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
    

        /* Hero Section */
        .hero {
            background-image: url('pictures/banden2.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 16rem 2rem;
            min-height:100vh;
            scroll-margin-top: 110px
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            background:#DEAC0D;
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
        }

        /* Sections */
        section {
            padding: 4rem 2rem;
            margin: 0 auto;
            scroll-margin-top: 60px
        }

        section:nth-child(even) {
            background: #f9f9f9;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #1a1a1a;
            text-align: center;
        }

        .section-intro {
            text-align: center;
            /*max-width: 1200px;*/
            /*margin: 0 auto 3rem;*/
            font-size: 1.2rem;
            color: #666;
        }

        /* Banden section */
        section.banden-info {
            /*max-width: 1600px;*/
            /*margin: 50px auto;*/
            background: #fff;
            /*padding: 60px 40px;*/
        }

        .banden-info h2 {
            color: #171D37;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            margin-top:2rem;
            padding-left: 20px;

        }

        .banden-info h3 {
            color: #171D37;
            font-size: 1.6rem;
            margin-top: 3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f0f0f0;
        }

        .banden-info h4 {
            color: #171D37;
            font-size: 1.3rem;
            margin-top: 3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
        }

        .banden-info p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .banden-info ul, .accordion-item ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 2rem;
        }

        .banden-info ul li, .accordion-item ul li {
            padding: 0.8rem 0 0.8rem 2.5rem;
            position: relative;
            font-size: 1.05rem;
            line-height: 1.6;
            color: #444;
        }

        .banden-info ul li:before, .accordion-item ul li:before {
            content: "";
            position: absolute;
            left: 0;
            color: #DEAC0D;
            font-weight: bold;
            font-size: 1.3rem;
            background: url('next.png');
            background-size: contain;
            height:20px;
            width:20px;
        }

        .banden-info ul li strong {
            color: #171D37;
        }

        .tip-box {
            background: linear-gradient(135deg, #fff9e6 0%, #fff4cc 100%);
            border-left: 4px solid #DEAC0D;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .tip-box p {
            margin: 0;
            font-size: 1.05rem;
        }

        .band-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .band-type-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border: 2px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .band-type-card:hover {
            border-color: #DEAC0D;
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(222, 172, 13, 0.15);
        }

        .band-type-card h3 {
            margin-top: 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #DEAC0D;
            font-size: 1.4rem;
        }

        .band-type-card ul {
            margin-top: 1rem;
        }

        .band-type-card ul li {
            padding: 0.6rem 0 0.6rem 2rem;
            font-size: 1rem;
        }

        .bridgestone-promotion {
            width: 100%;
            max-width: 1200px; /* zodat het niet té groot wordt op grote schermen */
        }

        .yellow {
            color: #DEAC0D;
        }
        /* flip card and accordion 2 */
           /* Flip card */
        .flip-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin:0rem 3rem;
        }

        .flip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .flip-card h4 {
            text-align: center;
            background: #1f2847;

            color: #f0f0f0;
            padding: 1rem;
            margin: 0;
            font-size: 1.3rem;
            letter-spacing: 1px;
            font-weight: 700;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
           
        }

        .flip-card h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #171D37;
            border-radius: 2px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
        }

        .flip-card-front {
            height: 30rem;
            position: relative;
            overflow: hidden;
        }

        .flip-card-front::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .flip-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .flip-card:hover img {
            transform: scale(1.1);
        }

        .flip-card-back {
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgb(255, 255, 255) 100%);
            backdrop-filter: blur(10px);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: bottom 0.6s ease;
            padding: 2.5rem;
            text-align: left;
            box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
            opacity:0.95;
        }

        .flip-card:hover .flip-card-back {
            bottom: 0;
        }

        .card-item {
            font-weight: 600;
            color: #213066;
            margin: 1.2rem 0;
            font-size: 1.5rem;
            padding-left: 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        /* Accordion Styles */
        .accordion-container {
            max-width: 100%;
        }

        .accordion-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .accordion-header {
            background: linear-gradient(135deg, #171D37 0%, #1f2847 100%);
            color: white;
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: linear-gradient(135deg, #1f2847 0%, #171D37 100%);
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 1.5rem;
            color: white;
        }

        .accordion-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: #DEAC0D;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: #f9f9f9;
        }

        .accordion-item.active .accordion-content {
            max-height: 2000px;
            padding: 2rem;
        }

        .accordion-content-inner {
            line-height: 1.8;
        }

        .accordion-content-inner h4 {
            color: #171D37;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        .accordion-content-inner h4:first-child {
            margin-top: 0;
        }

        .accordion-content-inner ul {
            list-style: none;
            padding-left: 0;
        }

        .accordion-content-inner ul li {
            padding: 0.5rem 0 0.5rem 1.8rem;
            position: relative;
            color: #555;
        }

        .accordion-content-inner ul li:before {
            content: "";
            position: absolute;
            left: 0;
            color: #DEAC0D ;
            font-weight: bold;
        }

        .accordion-content-inner p {
            color: #555;
            margin-bottom: 1rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, #fff9e6 0%, #fff4cc 100%);
            border-left: 4px solid #DEAC0D;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 5px;
        }

        .section-intro {
            text-align: center;
            color: #555;
            margin-bottom: 2rem;
            font-size: 1.2rem;
        }

        /* flex-container*/
        .flex-container {
            display:flex;
            flex-direction:row;
            width:100%;
            align-items: center;
        }

        

        .left,
        .right {
            width:50%;
            padding:20px;
        }

        .contact-card .left,.contact-card .right {
            padding:0;

        }

        .big-left {
            width:60%;
            padding:20px;
        }

        .small-right {
            width:40%;
            padding:20px;   
         }

        .align-center {
            text-align: center;
        }
        .flex-row {
            display:flex;
            flex-direction: row;
        }
        .flex-column {
            display:flex;
            flex-direction: column;
        }

        .flex-center {
            display:flex;
            justify-content: center;
            align-items: center;
        }
        .battery-services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .picture {
            height:400px;
            margin-top:50px;
            border-radius:20px;
        }

        /* Grid Layouts */
        .grid-services {
            display: grid;
            grid-template-columns: repeat(4, 1fr) !important;
            gap: 2rem;
        }

         /* Grid Layouts */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        @media (max-width: 1200px) {
        .grid-services {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }

        @media (max-width: 900px) {
            .grid-services {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media (max-width: 600px) {
            .grid-services {
                grid-template-columns: repeat(1, 1fr) !important;
            }
        }

        .card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-0.5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        }

        .card h3 {
            color: #171D37;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .card ul {
            list-style: none;
            padding-left: 0;
        }

        .card li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .card li:last-child {
            border-bottom: none;
        }
        .bullet-point {
            height:15px;
            margin-right:10px;
        }

        /* Brands Section */
        .brands {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            
        }

        .brand-box {
            background: white;
            padding: 1.5rem 2.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(231, 208, 208, 0.1);
            font-weight: bold;
            font-size: 1.3rem;
            color: #1a1a1a;
        }
        .other-brands-small {
            height:40px;
            margin:10px;
        }
        .other-brands {
            height:70px;
            margin:10px;
        }

        .other-brands-big {
            height:150px;
            margin:10px;
            
        }
         .other-brands-medium {
            height:100px;
            margin:10px;
            
        }
         #firststop-logo {
            height:60px;
        }

        /* Contact information */

        .contact-card{max-width:800px;margin:0 auto;background:var(--card);border-radius:12px;box-shadow:0 6px 20px rgba(11,18,34,0.06);overflow:hidden;display:flex;flex-direction:column;gap:0;align-items:stretch}
        .contact-info{padding:24px;width:100%}
        .contact-info h2{margin:0 0 8px;font-size:20px;color:#0f172a}
        .contact-row{display:flex;gap:12px;align-items:flex-start;margin:14px 0}
        .meta{font-size:14px;color:var(--muted);font-weight: 700;}
        .meta b{color:#0f172a}
        .map-wrap{width:100%;position:relative;height:350px;max-width:800px}
        .map-wrap iframe,
        .map-wrap gmp-map{border:0;width:100%;height:100%;display:block}
        .map-overlay{position:absolute;left:12px;top:12px;background:rgba(255,255,255,0.92);padding:8px 12px;border-radius:10px;box-shadow:0 6px 18px rgba(11,18,34,0.08);font-size:13px;z-index:10}
        .contact-actions{margin-top:18px;text-align: center;}
        .btn{display:inline-block;padding:10px 14px;border-radius:10px;text-decoration:none;font-weight:600;border:1px solid transparent}
        .btn-primary{background:var(--accent);color:white;background-color: #0492C2;border-color:rgba(11,74,222,0.12)}
        .btn-primary:hover {background-color:#174B70;}
        .btn-outline{background:var(--accent);color:white;border-color:rgba(11,74,222,0.12); background-color: #DEAC0D;}
        .btn-outline:hover{background-color: #c99a0b;}
        @media (max-width:820px){
            .map-wrap{height:350px}
        }
        .contact-link, .privacy { 
            color:#0492C2;
        }

        .phone-number { 
            color:#0492C2;
            text-decoration: none;
        }
            
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 3px 20px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #333;
        }

        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #DEAC0D;
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: #DEAC0D;
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
            border-color:rgba(11,74,222,0.12)
        }

        .submit-btn:hover {
            background: #c99a0b;
        }

        .avatar {
            width: 30rem;
            height: 30rem;
            border-radius: 50%;
            object-fit: cover;
            display: inline-block;
            overflow: hidden;
            margin:20px;
            text-align: center;
        }

        .avatar-info {
            font-weight:600;
            color:#213066;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 3rem 2rem;
        }

        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
            display:flex;

        }

        .footer-section h3 {
            color: #DEAC0D;
            margin-bottom: 1rem;
        }
        /* specifieke verhoudingen */
        .footer-info { flex: 1; }              /* 1/5 */
        .socials-payments { flex: 1; }   /* 1/5 */
        .privacy { flex: 1; }            /* 1/5 */
        .openinghours { flex: 2; }       /* 2/5 */

        .payment-methods {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .payment-badge {
            background: white;
            color: #1a1a1a;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .promo-banner {
            background: linear-gradient(135deg, #DEAC0D 0%, #FF3C38 100%);
            color: white;
            padding: 1.5rem;
            text-align: center;
            font-weight: bold;
            font-size: 1.4rem;
            margin: 2rem 0 0rem 0rem;
            border-radius: 3px;
            width:100%;
            max-width:1200px;
            margin:2rem auto 0 auto;
        }

        .contacthours {
            display:flex;
            flex-direction: column;
        }
        .openingsuren {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }

        .contacthours-table {
            width: 100%;
            border-collapse: collapse;
        }

        .contacthours-table td {
            padding-right:10px;
        }

        .openingsuren td:first-child {
            font-weight: bold;
            padding-right: 10px;
            
        }

        .openingsuren td {
            padding: 4px 0;
        }

        .socials {
            color:#333333;
            text-decoration: none;
        }
    


        .link-button {
            display: inline-block;
            background: #DEAC0D;
            color: white;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 1rem;
            transition: background 0.3s;
            font-weight:600;
        }

        .link-button:hover {
            background: #c99a0b;
        }

        /* Over ons*/
        .icon {
            width:1.6rem;
            margin-right:10px;
        }

        #over-ons .card ul li i {
            margin-right:0.5rem;
        }

        /* Banner carroussel */
        .banner-container {
            --visible: 6; /* aantal zichtbare afbeeldingen */
            --gap: 18px;
            --item-width: 200px; /* breedte per item */
            --transition-time: 200ms;
            
        }

        .banner-container .banner-wrap {
            width: calc(var(--visible) * (var(--item-width) + var(--gap)) - var(--gap));
            margin: 0 auto;
        }

        .banner-container .banner {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(20,30,60,.08);
            background: white;
        }

        .banner-container .track {
            display: flex;
            gap: var(--gap);
            will-change: transform;

        }

        .banner-container .item {
            flex: 0 0 var(--item-width);
            height:70px;
            border-radius: 8px;
            overflow: hidden;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-container .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width:1100px) {
            .banner-container {
            --item-width: 120px;
            }
        }

        @media (max-width:800px) {
            .banner-container {
            --item-width: 110px;
            --visible: 5;
            }

            .banner-container .banner-wrap {
            width: calc(var(--visible) * (var(--item-width) + var(--gap)) - var(--gap));
            }
        }

        .banner-container .info {
            margin-top: 10px;
            text-align: center;
            color: #556;
            margin-left: 4px;
        }

        /* formaten */

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }

    /* Cookie Banner Styles */
    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(23, 29, 55, 0.98);
        color: white;
        padding: 1.5rem;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
        z-index: 9999;
        display: none;
        animation: slideUp 0.5s ease;
    }

    .cookie-banner.show {
        display: block;
    }

    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }

    .cookie-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .cookie-text {
        flex: 1;
        min-width: 250px;
    }

    .cookie-text p {
        margin: 0 0 0.5rem 0;
        line-height: 1.6;
    }

    .cookie-text a {
        color: #DEAC0D;
        text-decoration: underline;
    }

    .cookie-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .cookie-btn {
        padding: 0.8rem 1.5rem;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
    }

    .cookie-accept {
        background: #DEAC0D;
        color: white;
    }

    .cookie-accept:hover {
        background: #c99a0b;
    }

    .cookie-decline {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .cookie-decline:hover {
        background: white;
        color: #171D37;
    }

    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        overflow-y: auto;
    }

    .modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

    .modal-content {
        background: white;
        padding: 3rem;
        border-radius: 10px;
        max-width: 800px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        animation: modalFadeIn 0.3s ease;
    }

    @keyframes modalFadeIn {
        from { opacity: 0; transform: scale(0.9); }
        to { opacity: 1; transform: scale(1); }
    }

    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        cursor: pointer;
        color: #666;
        background: none;
        border: none;
        padding: 0.5rem;
        line-height: 1;
    }

    .modal-close:hover {
        color: #171D37;
    }

    .modal-content h2 {
        color: #171D37;
        margin-bottom: 1rem;
    }

    .modal-content h3 {
        color: #174B70;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .modal-content h4 {
        color: #174B70;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .modal-content p {
        line-height: 1.8;
        margin-bottom: 1rem;
        color: #333;
    }

    .modal-content ul {
        margin-bottom: 1rem;
        padding-left: 1.5rem;
    }

    .modal-content li {
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }



    /* ===== RESPONSIVE STYLES - TABLET (1024px) ===== */
    @media (max-width: 1024px) {
        .mobile-menu-toggle {
            display: block;
            
        }
        
       .logo {
            display:flex;
            gap:42rem;
        }
        .logo img {
            width: 130px !important;
            margin:10px;

        }
        nav {
            position: relative;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background: #171D37;
            flex-direction: column;
            padding: 5rem 2rem 2rem 2rem;
            gap: 1.2rem;
            box-shadow: -2px 0 10px rgba(0,0,0,0.3);
            transition: right 0.3s ease;
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links li {
            width: 100%;
            text-align: left;
        }

        .nav-links a {
            display: block;
            padding: 0.5rem 0;
            font-size: 1.1rem;
        }
         
        .grid-services {
            grid-template-columns: repeat(2, 1fr) !important;
        }

        .flip-card {
            margin: 0 1rem;
        }

        .flip-card h4 {
            font-size: 1rem;
            padding: 0.8rem;
        }

        .flex-container {
            flex-direction: column;
        }

        .left, .right {
            width: 100%;
        }

        .other-brands-big {
            height: 100px;
        }

        .avatar {
            width: 20rem;
            height: 20rem;
        }

        .flip-card {
            height:90%;
           }

        .flip-card-back {
    
        }

       .card-item {
        font-size:1rem;
        padding-left: 0.2rem;
       }
    }

    /* ===== RESPONSIVE STYLES - SMARTPHONE (768px) ===== */
    @media (max-width: 768px) {
        

       /* header {
            position: sticky;
            top: 0;
            z-index: 1000;
        }*/
        
        nav {
            padding: 0 1rem;
            position:relative;
        }
        .mobile-menu-toggle {
            /*display: block;*/
            margin-left:12rem;

        }

        .logo {
            display:flex;
            gap:0;
        }
        .logo img {
            width: 100px !important;
        }

        .hero {
            padding: 5rem 1rem;
            min-height: 100vh;
        }
        
        .hero h1 {
            font-size: 2rem;
            margin-top:200px;
        }

        .hero p {
            font-size: 1.1rem;
        }

        h2 {
            font-size: 2rem;
        }

        section {
            padding: 3rem 1rem;
        }

        .grid-services {
            grid-template-columns: 1fr !important;
            gap: 1.5rem;
        }

        .card {
            padding: 1.5rem;
        }

        .flip-card {
            margin: 0 0.5rem;
        }

        .flip-card h4 {
            font-size: 1rem;
            padding: 1rem;
        }

        .flip-card-front {
            height: 20rem;
        }

        .card-item {
            font-size: 1rem;
            margin: 0.8rem 0;
        }

        .accordion-header h3 {
            font-size: 1.2rem;
        }

        .accordion-item.active .accordion-content {
            padding: 1.5rem;
        }

   
        .picture {
            height: auto;
            width: 100%;
            max-width: 100%;
            margin-top: 20px;
        }

        #firststop-logo {
            height:40px;
        }

        .other-brands, .other-brands-medium {
            height: 50px;
            
        }

        .other-brands {
            width:120px;
        }

        .other-brands-small {
            height: 20px;
        }

        .other-brands-big {
            height: 80px;
        }

        .avatar {
            width: 15rem;
            height: 15rem;
        }

        .bridgestone-promotion {
            width: 100%;
            height: auto;
        }

        .promo-banner {
            font-size: 1.1rem;
            padding: 1rem;
            margin: 1rem 0 0 0;
        }

        .contact-card {
            flex-direction: column;
        }

        .map-wrap {
            min-height: 300px;
        }

        .contact-form {
            padding: 1.5rem;
            margin: 1rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section table {
            margin: 0 auto;
        }

        .footer-content {
           flex-direction: column;

        }

        .payment-methods {
            justify-content: center;
        }

        .banner-container {
            --item-width: 80px;
            --visible: 4;
        }

        .banner-container .banner-wrap {
            width: calc(var(--visible) * (var(--item-width) + var(--gap)) - var(--gap));
        }

        .cookie-content {
            flex-direction: column;
            gap: 1rem;
        }

        .cookie-text {
            min-width: 100%;
        }

        .cookie-buttons {
            width: 100%;
            justify-content: stretch;
        }

        .cookie-btn {
            flex: 1;
            min-width: 120px;
        }

        .modal {
            padding: 1rem;
        }

        .modal-content {
            padding: 2rem 1.5rem;
            max-height: 85vh;
        }

        .modal-content h2 {
            font-size: 1.5rem;
            padding-right: 2rem;
        }

        .modal-content h3 {
            font-size: 1.2rem;
        }

        .flex-row {
            flex-direction: column;
        }
        
        .big-left {
            width:100%;
            padding:20px;
        }

        .small-right {
            width:100%;
            padding:20px;   
         }

         .contact-actions {
            text-align: center;;
         }
    }

    /* ===== RESPONSIVE STYLES - SMALL SMARTPHONE (480px) ===== */
    @media (max-width: 480px) {
        .hero h1 {
            font-size: 1.5rem;
        }

        .hero p {
            font-size: 1rem;
        }

        .cta-button {
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
        }

        h2 {
            font-size: 1.5rem;
        }

        .section-intro {
            font-size: 1.2rem;
        }

        .card h3 {
            font-size: 1.2rem;
        }

        .flip-card h4 {
            font-size: 1rem;
            padding: 0.8rem;
        }

        .flip-card-front {
            height: 15rem;
        }

        .card-item {
            font-size: 0.9rem;
        }

        .accordion-header {
            padding: 1rem 1.5rem;
        }

        .accordion-header h3 {
            font-size: 1rem;
        }

        .accordion-icon {
            font-size: 1.2rem;
        }

        .accordion-item.active .accordion-content {
            padding: 1rem;
        }

        .banner-container {
            --item-width: 80px;
            --visible: 4;
            --gap: 8px;
            padding:10px;
        }

        .banner-container .item {
            height: 50px;
        }

        .avatar {
            width: 12rem;
            height: 12rem;
        }

        .promo-banner {
            font-size: 1rem;
        }

        .contact-info {
            padding: 1rem;
        }

        .contact-row {
            font-size: 0.9rem;
        }

        .icon {
            width: 1.2rem;
        }

        .cookie-banner {
            padding: 1rem;
        }

        .cookie-text p {
            font-size: 0.9rem;
        }

        .cookie-buttons {
            flex-direction: column;
        }

        .cookie-btn {
            width: 100%;
        }
        
    }