
        :root {
            --primary: #1d4e88; /* Updated to new color */
            --secondary: #073478;
            --accent: #2e86c1;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --gray: #95a5a6;
            --success: #27ae60;
            --yards-primary: #1d4e88; /* Updated to new color */
            --yards-secondary: #073478;
            --yards-accent: #2e86c1;
            --yards-light: #f8f9fa;
            --yards-dark: #343a40;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--yards-light);
            color: #333;
            line-height: 1.6;
        }
        
        .hero-container {
            display: flex;
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('assets/img/kiabackgroundimg.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .content-wrapper {
            display: flex;
            width: 100%;
            max-width: 1200px;
            margin: auto;
            padding: 0 45px;
        }
        
        .content-left {
            flex: 1;
            color: white;
            margin-top: 62px;
            padding-right: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .content-right {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .tagline {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .main-heading {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: white;
            font-weight: 700;
        }
        
        .description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 500px;
        }
        
        .features {
            margin: 25px 0;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .feature-icon {
            color: var(--yards-secondary);
            font-size: 1.5rem;
            margin-right: 15px;
        }
        
        .feature-text {
            font-size: 1rem;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #073478;
            color: black;
            padding: 15px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            text-align: center;
            margin-top: 20px;
            border: none;
            cursor: pointer;
            width: 250px;
            text-transform: uppercase;
        }
        
        .cta-button:hover {
            background-color: #ffff0f;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        /* Form Styling */
        .form-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            width: 100%;
            max-width: 400px;
        }

        .form-section h2 {
            color: var(--yards-primary);
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 700;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--yards-secondary);
        }

        .form-group {
            margin-bottom: 12px;
        }

        .form-group label {
            color: white;
            font-weight: 500;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .form-select, .form-control {
            padding: 10px 12px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 14px;
            width: 100%;
            transition: all 0.3s;
            height: 40px;
        }

        .form-select:focus, .form-control:focus {
            border-color: var(--yards-accent);
            box-shadow: 0 0 0 0.2rem rgba(46, 134, 193, 0.25);
        }

        .btn-primary {
            background-color: var(--yards-primary);
            border-color: var(--yards-primary);
            padding: 10px 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .btn-primary:hover {
            background-color: #153a63;
            border-color: #153a63;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: #6c757d;
            border-color: #6c757d;
            padding: 10px 15px;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .btn-secondary:hover {
            background-color: #5a6268;
            border-color: #545b62;
        }

        .alert-warning {
            background-color: #fff3cd;
            border-color: #ffeaa7;
            color: #856404;
            font-size: 0.9rem;
            padding: 10px 15px;
        }

        .form-success {
            text-align: center;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 8px;
            margin-top: 15px;
            display: none;
        }

        .form-success i {
            font-size: 2.5rem;
            color: var(--success);
            margin-bottom: 10px;
        }

        /* Form row adjustments for smaller size */
        .form-group.row {
            margin-bottom: 8px;
        }

        .form-group.row .col-sm-2 {
            padding-right: 5px;
        }

        .form-group.row .col-sm-10 {
            padding-left: 5px;
        }

        .col-form-label {
            padding-top: 8px;
            font-size: 0.9rem;
        }
        
        .error-message {
            color: #dc3545;
            font-size: 0.8rem;
            margin-top: 5px;
            display: none;
        }
        
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .content-left {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
                align-items: center;
            }
            
            .main-heading {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .main-heading {
                font-size: 2rem;
            }
            
            .form-section {
                padding: 20px;
            }
            
            .cta-button {
                width: 100%;
            }
        }



        /* New Features Section-2 Styles */
        .features-section {
            background-color: #f8f9fa;
            padding: 70px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #1d4e88;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 45px;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1d4e88, #2e86c1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .feature-icon i {
            font-size: 30px;
            color: white;
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #1d4e88;
        }
        
        .feature-card p {
            color: #6c757d;
            line-height: 1.6;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
    


        /* section 2 */

         /* New list GMC Engines Container */
        .gmc-container {
            display: flex;
            min-height: 500px;
            background-color: #f8f9fa;
                padding: 0 45px;
        }
        
        .gmc-content {
            flex: 1;
            padding: 0 74px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(90deg, #f8f9fa 70%, rgba(248,249,250,0.8) 100%);
            position: relative;
            z-index: 2;
        }
        
        .gmc-image {
            flex: 1;
            background-image: url('https://images.unsplash.com/photo-1563720223880-4d93eef1f1c2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 0px 69px;
        }
        
        /* .gmc-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(248,249,250,0.8) 0%, rgba(248,249,250,0.4) 30%, transparent 100%);
        } */
        
        .gmc-tagline {
            color: #1d4e88;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
        }
        
        .gmc-heading {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1d4e88;
            margin-bottom: 25px;
        }
        
        .gmc-heading span {
            color: #e67e22;
            display: block;
        }
        
        .gmc-description {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 35px;
            max-width: 500px;
            line-height: 1.6;
        }
        
        .gmc-button {
            display: inline-block;
            background-color: #ffff0f;
            color: black;
            padding: 16px 40px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            text-align: center;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
            width: fit-content;
        }
        
        .gmc-button:hover {
            background-color: #073478;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .gmc-container {
                flex-direction: column;
            }
            
            .gmc-content {
                padding: 40px 30px;
                text-align: center;
                align-items: center;
            }
            
            .gmc-image {
                min-height: 250px;
            }
            
            .gmc-heading {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .gmc-heading {
                font-size: 2.2rem;
            }
            
            .gmc-content {
                padding: 30px 20px;
            }
            
            .gmc-button {
                width: 100%;
                padding: 14px 20px;
            }
        }

        @media (max-width: 576px) {
             .gmc-container {
        flex-direction: column-reverse;     
    }
    .gmc-image img {
               width: 174%;
        height: 200px;
        margin: 11px -61px;
        border-radius: 12px;
        object-fit: contain;
    }
}






        /* section 3 */


        /* New Container Styles */
.content-container {
    padding: 70px 0;
    background-color: white;
}

.container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 45px;
}

.image-text-section {
    display: flex;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    gap: 25px;
}

.image-container {
    flex: 1;
    min-height: 400px;
        /* padding: 0px 41px; */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-container {
    flex: 1;
    padding: 17px 45px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-container h2 {
    color: var(--yards-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.text-container p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #495057;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yards-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.long-text-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.long-text-section h3 {
    color: var(--yards-primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.long-text-section p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #495057;
}

.long-text-section ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.long-text-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #495057;
}

/* Responsive Design */
@media (max-width: 992px) {
    .image-text-section {
        flex-direction: column;
    }
    
    .image-container {
        min-height: 300px;
    }
    
    .stats-container {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .text-container, .long-text-section {
        padding: 25px;
    }
    
    .text-container h2 {
        font-size: 1.7rem;
    }
    
    .long-text-section h3 {
        font-size: 1.5rem;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
}

/* GMC Engine Models Section */
.gmc-models-section {
    padding: 6px 94px;    background-color: #f8f9fa;
}

.gmc-models-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

.section-title {
    text-align: center;
    color: var(--yards-primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.models-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 12px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.model-column {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.model-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.model-list li:before {
    content: "•";
    color: var(--yards-secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.model-list li:last-child {
    border-bottom: none;
}

.model-list li:hover {
    color: var(--yards-primary);
    transform: translateX(5px);
}

.cta-container {
    text-align: center;
    background: white;
    padding: 30px;
    margin: 12px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cta-container p {
    margin-bottom: 20px;
    color: #495057;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background-color: #073478;
    margin-bottom: 28px;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    color: black;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .models-grid {
        gap: 20px;
    }
    
    .model-column {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .model-column {
        flex: 0 0 100%;
        margin: 0px -55px;
        
    }
    
    
    .cta-container {
        padding: 20px;
    }
}

/* section 4 */
.content-image-container {
    display: flex
;
    max-width: 1200px;
    margin: 40px;
    padding: 0 20spx;
    gap: 67px;
    align-items: center;
}

.text-content {
    flex: 1;
    margin-left: -37px;
}

.text-content h2 {
    color: var(--yards-primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.text-content h3 {
    color: var(--yards-secondary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.text-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #495057;
    font-size: 1.05rem;
}

.text-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.text-content li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #495057;
    font-size: 1.05rem;
    position: relative;
    padding-left: 25px;
}

.text-content li:before {
    content: "✓";
    color: var(--yards-secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.image-content {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-content img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-content:hover img {
    transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-image-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .text-content, .image-content {
        flex: none;
        width: 100%;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .text-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .content-image-section {
        padding: 50px 0;
    }
    
    .text-content h2 {
        font-size: 1.1rem;
    }
    
    .text-content h3 {
        font-size: 1.3rem;
    }
    
    .text-content p, .text-content li {
        font-size: 1rem;
    }
}

/* text advantage  conatiner  */

 .tezt-container {
    background: #0b1a2b;           /* deep navy backdrop */
    color: #eef3f9;
    padding: 48px 16px;
  }
  .tezt-wrap {
    max-width: 1100px;
    margin: 0 auto;
  }
  .tezt-container h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.25;
    margin: 0 0 20px;
    letter-spacing: 0.2px;
  }
  .tezt-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 10px 20px;
    grid-template-columns: 1fr;
  }
  .tezt-list li {
    position: relative;
    padding-left: 34px;
    line-height: 1.5;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px 14px 12px 42px;
  }
  .tezt-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 1rem;
    background: #25d366;           /* check badge */
    color: #0b1a2b;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
  }
  .tezt-note {
    margin: 12px 0 0;
    line-height: 1.7;
    color: #cfd8e3;
  }

  /* Responsive: 2 columns on wider screens */
  @media (min-width: 720px) {
    .tezt-list {
      grid-template-columns: 1fr 1fr;
    }
  }


  /* heading and text  */
   .find-engines-section {
    background: #f9fafc;          /* light background for contrast */
    color: #1a1a1a;
    padding: 60px 16px;
    text-align: center;
  }
  .find-engines-wrap {
    max-width: 900px;
    margin: 0 auto;
  }
  .find-engines-section h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 18px;
    color: #0b1a2b;              /* dark navy heading */
    font-weight: 700;
  }
  .find-engines-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
  }




  /* Locations Section */
.locations-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.locations-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    color: var(--yards-primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 0 27px;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.location-column {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.location-list li:before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 0.9rem;
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list li:hover {
    color: var(--yards-primary);
    transform: translateX(5px);
}

.locations-cta {
    text-align: center;
    background: white;
    padding: 30px;
    margin: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.locations-cta p {
    margin-bottom: 20px;
    color: #495057;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background-color: #073478;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #ffff0f;
    transform: translateY(-2px);
    color: black;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .locations-grid {
        gap: 20px;
    }
    
    .location-column {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .location-column {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .locations-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .location-column {
        padding: 20px;
    }
    
    .locations-cta {
        padding: 20px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}


/* faq style   */
 .faq-section {
    background: #0b1a2b; 
    color: #fff;
    padding: 60px 16px;
  }
  .faq-wrap {
    max-width: 900px;
    margin: 0 auto;
  }
  .faq-section h2 {
    text-align: center;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 12px;
  }
  .faq-sub {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
    color: #cfd8e3;
  }

  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .faq-question {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    padding: 18px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
  }
  .faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
    transition: transform 0.3s;
  }
  .faq-question.active::after {
    content: "-";
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 18px;
  }
  .faq-answer p {
    margin: 0;
    padding: 10px 0 20px;
    color: #dce3ed;
    line-height: 1.6;
  }
  .faq-answer.show {
    max-height: 400px; /* enough for text */
  }

  /* customer review section  */
    .customer-say-section {
    background: #f9fafc;
    padding: 60px 16px;
    text-align: center;
  }
  .customer-say-wrap {
    max-width: 1200px;
    margin: 0 auto;
  }
  .customer-say-section h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 40px;
    color: #0b1a2b;
    font-weight: 700;
  }
  .customer-reviews {
    display: flex;
    justify-content: space-between;
    gap: 20px;
        margin: 44px;
    flex-wrap: wrap;
  }
  .review {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 22px 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .review .stars {
    color: #f8b400; /* gold stars */
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .review p {
    font-style: italic;
    margin: 0;
    flex-grow: 1;
  }
  .review h4 {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
  }