
    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        padding: 100px 0;
        color: white;
        position: relative;
        overflow: hidden;
    }
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1;
    }
    .hero-content {
        position: relative;
        z-index: 2;
    }
    .hero-title {
        font-size: 2.75rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }
    .cta-button {
        background: linear-gradient(45deg, #ff6b35, #f7931e);
        border: none;
        padding: 15px 35px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        color: white;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        color: white;
    }
    .feature-badge {
        background: rgba(255,255,255,0.15);
        padding: 8px 20px;
        border-radius: 25px;
        display: inline-block;
        margin: 5px 10px 5px 0;
        font-weight: 600;
        font-size: 1rem;
    }

    /* Service Cards */
    .service-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        height: 100%;
        border: none;
    }
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    .service-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(45deg, #1e3c72, #2a5298);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
    }

    /* Section Titles */
    .section-title {
        text-align: center;
    }
    .section-title h2 {
        font-size: 2.25rem !important;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    /* Why Choose Grid */
    .why-choose-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }
    .why-choose-item {
        text-align: center;
        padding: 1.5rem;
        background: rgba(255,255,255,0.1);
        border-radius: 15px;
        transition: all 0.3s ease;
    }
    .why-choose-item:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,0.2);
    }

    /* Special Sections */
    .eco-section {
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        color: white;
        padding: 80px 0;
    }
    .adas-section {
        background: #f8f9fa;
        padding: 80px 0;
    }
    .warranty-section {
        background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
        color: white;
        padding: 80px 0;
    }
    .mobile-service-section {
        background: #2c3e50;
        color: white;
        padding: 80px 0;
    }
    .power-window-section {
        background: #f8f9fa;
        padding: 80px 0;
    }

    /* Comparison Table */
    .comparison-table {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin: 2rem 0;
    }
    .comparison-table th {
        background: #2c3e50;
        color: white;
        padding: 1rem;
        font-weight: 600;
    }
    .comparison-table td {
        padding: 1rem;
        border-bottom: 1px solid #ecf0f1;
    }

    /* Testimonial Card */
    .testimonial-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin: 2rem 0;
    }

    /* Areas Grid */
    .areas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin: 2rem 0;
    }
    .area-item {
        background: #ecf0f1;
        padding: 1rem;
        border-radius: 10px;
        text-align: center;
        transition: all 0.3s ease;
    }
    .area-item:hover {
        background: #3498db;
        color: white;
    }

    /* FAQ Items */
    .faq-item {
        background: white;
        border-radius: 10px;
        margin-bottom: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .faq-question {
        padding: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
        border-bottom: 1px solid #ecf0f1;
    }
    .faq-question h2 {
        font-size: 1.6rem;
    }
    .faq-answer {
        padding: 1.5rem;
        color: #7f8c8d;
        line-height: 1.6;
    }

    /* Hidden Content */
    .hidden-content {
        display: none;
    }

    /* Weather Section */
    .weather-section {
        background: #34495e;
        color: white;
        padding: 40px 0;
        text-align: center;
    }

    /* Why Choose Us Section */
    .why-choose-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }
    .why-choose-item {
        text-align: center;
        padding: 2.5rem 1.5rem;
        background: white;
        border-radius: 20px;
        transition: all 0.4s ease;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        border: 1px solid rgba(0,0,0,0.05);
        position: relative;
        overflow: hidden;
    }
    .why-choose-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #2ecc71, #f39c12, #e74c3c);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }
    .why-choose-item:hover::before {
        transform: scaleX(1);
    }
    .why-choose-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    .icon-wrapper {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: all 0.4s ease;
    }
    .icon-wrapper i {
        font-size: 2.2rem;
        color: white;
        z-index: 2;
        position: relative;
    }
    .why-choose-item h5 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }
    .why-choose-item:hover h5 {
        color: #667eea;
    }
    .feature-desc {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }
    .why-choose-item:hover .feature-desc {
        opacity: 1;
    }

    /* Eco Section */
    .eco-section {
        background: linear-gradient(135deg, #e0f7ef 0%, #c0eec6 100%);
        position: relative;
        overflow: hidden;
    }
    .eco-leaf-bg {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: url('https://www.transparenttextures.com/patterns/leaf.png');
        opacity: 0.08;
        z-index: 1;
        pointer-events: none;
    }
    .eco-section .container {
        position: relative;
        z-index: 2;
    }
    .eco-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        color: #fff;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        box-shadow: 0 4px 24px rgba(46,204,113,0.10);
        animation: eco-bounce 1.5s infinite alternate;
    }
    @keyframes eco-bounce {
        0% { transform: scale(1);}
        100% { transform: scale(1.08);}
    }
    .eco-heading {
        color: #218c5c;
        font-weight: 800;
        letter-spacing: 0.5px;
    }
    .eco-lead {
        color: #40916c;
        font-size: 1.15rem;
    }
    .eco-card {
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(39, 174, 96, 0.07);
        padding: 2rem 1.4rem 1.5rem 1.4rem;
        text-align: left;
        transition: transform 0.2s, box-shadow 0.2s;
        position: relative;
        border-left: 5px solid #27ae60;
        color: #2c3e50;
    }
    .eco-card p {
        color: #495057;
    }
    .eco-card-title {
        color: #218c5c;
        font-size: 1.25rem;
        font-weight: 700;
        margin-top: 1.7rem;
        margin-bottom: 0.8rem;
    }
    .eco-card-icon {
        position: absolute;
        top: -28px;
        right: 18px;
        background: linear-gradient(135deg, #b7e4c7, #95d5b2);
        color: #218c5c;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 2px 12px rgba(39, 174, 96, 0.09);
    }

    /* ADAS Section */
    .adas-section {
        background: linear-gradient(135deg, #e3f0fc 0%, #f6fafd 100%);
        position: relative;
        overflow: hidden;
    }
    .adas-bg {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: url('https://www.transparenttextures.com/patterns/cubes.png');
        opacity: 0.07;
        z-index: 1;
        pointer-events: none;
    }
    .adas-section .container {
        position: relative;
        z-index: 2;
    }
    .adas-feature-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #2980b9, #6dd5fa);
        color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
        box-shadow: 0 4px 18px rgba(52, 152, 219, 0.12);
        margin-bottom: 1rem;
        animation: adas-bounce 1.5s infinite alternate;
    }
    @keyframes adas-bounce {
        0% { transform: scale(1);}
        100% { transform: scale(1.08);}
    }
    .adas-heading {
        color: #186fa8;
        font-weight: 800;
        font-size: 2rem;
        line-height: 1.3;
    }
    .adas-highlight {
        color: #2980b9;
        background: #d6f0fa;
        padding: 0 4px;
        border-radius: 4px;
    }
    .adas-lead {
        color: #2980b9;
        font-size: 1.13rem;
    }
    .adas-list {
        margin-bottom: 1.5rem;
    }
    .adas-list-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.2rem;
    }
    .adas-list-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #6dd5fa, #2980b9);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-right: 1rem;
        box-shadow: 0 2px 8px rgba(52, 152, 219, 0.09);
    }
    .adas-list-item h3 {
        font-size: 1.1rem;
        color: #186fa8;
        margin-bottom: 0.4rem;
        font-weight: 700;
    }
    .adas-list-item p {
        color: #495057;
        font-size: 1rem;
        margin-bottom: 0;
    }
    .adas-note {
        color: #2980b9;
        font-size: 1rem;
        font-weight: 500;
        margin-top: 1.5rem;
    }
    .adas-card {
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(52, 152, 219, 0.10);
        padding: 2.2rem 1.5rem 1.5rem 1.5rem;
        max-width: 390px;
        margin: 0 auto;
        position: relative;
        border-left: 5px solid #2980b9;
        color: #2c3e50;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .adas-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 12px 32px rgba(52, 152, 219, 0.18);
    }
    .adas-card-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #6dd5fa, #2980b9);
        color: #fff;
        border-radius: 50%;
        width: 54px;
        height: 54px;
        font-size: 2rem;
        margin: 0 auto 1rem auto;
        box-shadow: 0 2px 10px rgba(52, 152, 219, 0.10);
    }
    .adas-card h4 {
        color: #186fa8;
        font-weight: 700;
        font-size: 1.15rem;
    }
    .adas-services-list li {
        font-size: 1rem;
        color: #2980b9;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Warranty Section */
    .warranty-combined-section {
      background: linear-gradient(135deg, #f7f6fb 0%, #ece9f7 100%);
    }
    .warranty-modern-card {
      background: #fff;
      border-radius: 22px;
      padding: 2.5rem 2rem 2rem 2rem;
      box-shadow: 0 8px 32px rgba(80, 50, 120, 0.10);
      position: relative;
      height: 100%;
    }
    .warranty-modern-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #8e44ad 60%, #ffd700 100%);
      color: #fff;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      font-size: 2.3rem;
      box-shadow: 0 4px 18px rgba(142, 68, 173, 0.10);
    }
    .warranty-modern-title {
      font-size: 2.1rem;
      font-weight: 800;
      line-height: 1.25;
      color: #2d1857;
      letter-spacing: 0.2px;
      word-break: break-word;
    }
    .warranty-modern-highlight {
      color: #8e44ad;
      background: #f3e8ff;
      border-radius: 5px;
      padding: 0 6px;
      font-weight: 900;
      display: inline-block;
    }
    .warranty-modern-subtitle {
      font-size: 1.1rem;
      color: #b388ff;
      font-weight: 600;
      letter-spacing: 0.02em;
      line-height: 1.3;
      word-break: break-word;
    }
    .warranty-modern-intro {
      font-size: 1.13rem;
      color: #5f4b8b;
      line-height: 1.6;
    }
    .warranty-modern-features {
      margin-bottom: 1.5rem;
    }
    .warranty-visual-card {
      background: #fff;
      border-radius: 22px;
      padding: 2.5rem 2rem 2rem 2rem;
      box-shadow: 0 8px 32px rgba(80, 50, 120, 0.10);
      position: relative;
      height: 100%;
    }
    .warranty-visual-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #8e44ad 60%, #ffd700 100%);
      color: #fff;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      font-size: 2.3rem;
      box-shadow: 0 4px 18px rgba(142, 68, 173, 0.10);
    }
    .warranty-visual-title {
      font-size: 2.1rem;
      font-weight: 800;
      line-height: 1.25;
      color: #2d1857;
      letter-spacing: 0.2px;
      word-break: break-word;
    }
    .warranty-visual-subtitle {
      font-size: 1.1rem;
      color: #b388ff;
      font-weight: 600;
      letter-spacing: 0.02em;
      line-height: 1.3;
      word-break: break-word;
    }
    .warranty-visual-intro {
      font-size: 1.13rem;
      color: #5f4b8b;
      line-height: 1.6;
    }
    .warranty-visual-features {
      margin-bottom: 1.5rem;
    }
    .warranty-feature-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #f7e9ff;
      color: #8e44ad;
      border-radius: 50%;
      width: 38px;
      height: 38px;
      font-size: 1.25rem;
      margin-top: 2px;
      box-shadow: 0 2px 8px rgba(142, 68, 173, 0.07);
      flex-shrink: 0;
    }

    /* Mobile Service Section */
    .mobile-service-section-modern {
      background: linear-gradient(135deg, #2c3e50 0%, #4ca1af 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .mobile-service-main-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
      color: #fff;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      font-size: 2.3rem;
      box-shadow: 0 4px 24px rgba(44, 62, 80, 0.12);
    }
    .mobile-service-title {
      font-size: 2.1rem;
      font-weight: 800;
      line-height: 1.25;
      color: #fff;
      letter-spacing: 0.2px;
      word-break: break-word;
    }
    .mobile-service-highlight {
      color: #00c6ff;
      background: #fff;
      border-radius: 5px;
      padding: 0 6px;
      font-weight: 900;
      display: inline-block;
    }
    .mobile-service-intro {
      font-size: 1.13rem;
      color: #d0e6f6;
      line-height: 1.6;
    }
    .mobile-service-steps-card {
      background: #fff;
      border-radius: 22px;
      box-shadow: 0 8px 32px rgba(44, 62, 80, 0.11);
      color: #2c3e50;
      max-width: 900px;
      margin: 0 auto;
    }
    .mobile-service-steps-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #0072ff;
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      line-height: 1.3;
      word-break: break-word;
    }
    .mobile-step {
      padding: 1.5rem 1rem 1rem 1rem;
      border-radius: 16px;
      background: linear-gradient(135deg, #e0ecf7 0%, #f7fafd 100%);
      box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
      transition: transform 0.2s, box-shadow 0.2s;
      margin-bottom: 0;
      height: 100%;
    }
    .mobile-step:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 6px 24px rgba(0, 198, 255, 0.13);
    }
    .mobile-step-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
      color: #fff;
      border-radius: 50%;
      width: 46px;
      height: 46px;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      box-shadow: 0 2px 8px rgba(0, 198, 255, 0.10);
    }

    /* Power Window Section */
    .power-window-section-modern {
      background: linear-gradient(135deg, #f1f5fb 0%, #e3eafc 100%);
      color: #222;
    }
    .power-window-main-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #64b5f6 60%, #1976d2 100%);
      color: #fff;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      font-size: 2.3rem;
      box-shadow: 0 4px 18px rgba(33, 150, 243, 0.10);
    }
    .power-window-title {
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.25;
      color: #1976d2;
      letter-spacing: 0.2px;
      word-break: break-word;
    }
    .power-window-highlight {
      color: #1976d2;
      background: #e3eafc;
      border-radius: 5px;
      padding: 0 6px;
      font-weight: 900;
      display: inline-block;
    }
    .power-window-intro {
      font-size: 1.13rem;
      color: #3b5998;
      line-height: 1.6;
    }
    .power-window-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 24px rgba(33, 150, 243, 0.10);
      color: #222;
      padding: 2rem 1.4rem 1.5rem 1.4rem;
      position: relative;
      border-left: 5px solid #64b5f6;
      min-height: 100%;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .power-window-card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 12px 32px rgba(33, 150, 243, 0.13);
    }
    .power-window-card-icon {
      position: absolute;
      top: -28px;
      right: 18px;
      background: linear-gradient(135deg, #bbdefb, #1976d2);
      color: #1976d2;
      border-radius: 50%;
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 2px 12px rgba(33, 150, 243, 0.09);
    }
    .power-window-card-title {
      color: #1976d2;
      font-size: 1.15rem;
      font-weight: 700;
      margin-top: 1.7rem;
      margin-bottom: 1.1rem;
    }
    .power-window-list {
      padding-left: 1.2rem;
      margin-bottom: 0;
    }
    .power-window-list li {
      margin-bottom: 0.7rem;
      line-height: 1.6;
      word-break: break-word;
    }

    /* Services Grid Section */
    .services-grid-section {
      background-color: #fff;
    }
    .section-header {
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
      color: #222;
      margin-bottom: 0.5rem;
    }
    .section-link {
      color: #222;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .section-link:hover,
    .service-link:hover {
      color: #007bff;
      text-decoration: underline;
    }
    .section-underline {
      width: 60px;
      height: 4px;
      background: #007bff;
      margin: 0 auto;
      border-radius: 2px;
    }
    .service-card {
      background: #f9fafb;
      border-radius: 14px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      height: 100%;
    }
    .service-card:hover {
      box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
      transform: translateY(-6px);
    }
    .service-title {
      font-size: 1.6rem;
      font-weight: 600;
      color: #111;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    .service-link {
      color: #111;
      text-decoration: none;
      transition: color 0.3s;
    }
    .service-description {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
      flex-grow: 1;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.2rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .why-choose-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }
        .section-title h2 {
            font-size: 2rem !important;
            line-height: 1.3;
        }
        .section-title p {
            font-size: 1rem !important;
        }
        .why-choose-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .why-choose-item {
            padding: 2rem 1rem;
        }
    }
    @media (max-width: 576px) {
        .why-choose-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        .section-title h2 {
            font-size: 1.8rem !important;
        }
        .warranty-modern-card,
        .warranty-visual-card {
            padding: 1.5rem 1rem 1rem 1rem;
        }
        .mobile-service-title,
        .power-window-title {
            font-size: 1.3rem;
        }
        .mobile-service-main-icon,
        .power-window-main-icon {
            font-size: 1.5rem;
            width: 48px;
            height: 48px;
        }
        .mobile-service-steps-card,
        .power-window-card {
            padding: 1.1rem 0.7rem 0.7rem 0.7rem;
            font-size: 0.98rem;
        }
        .mobile-step {
            padding: 1rem 0.5rem 0.7rem 0.5rem;
        }
        .power-window-card-title {
            margin-top: 1.3rem;
        }
        .section-title {
            font-size: 1.3rem;
        }
        .service-title {
            font-size: 1.1rem;
        }
    }
    @media (max-width: 991px) {
        .warranty-modern-card,
        .warranty-visual-card {
            padding: 1.5rem 1rem 1rem 1rem;
        }
        .warranty-card-icon {
            top: -30px;
            right: 12px;
        }
        .power-window-card {
            margin-bottom: 2rem;
            padding: 1.5rem 1rem 1rem 1rem;
        }
        .power-window-card-icon {
            top: -30px;
            right: 12px;
        }
        .section-title {
            font-size: 2.2rem;
        }
        .service-title {
            font-size: 1.3rem;
        }
        .mobile-service-steps-card {
            padding: 1.5rem 1rem 1rem 1rem;
        }
        .adas-card {
            margin-top: 2rem;
        }
        .eco-card {
            margin-bottom: 2rem;
        }
    }
    @media (max-width: 767px) {
        .adas-section .container {
            padding: 0 10px;
        }
        .adas-heading {
            font-size: 1.3rem;
        }
        .adas-card {
            padding: 1.3rem 0.8rem 1rem 0.8rem;
        }
        .eco-section .container {
            padding: 0 10px;
        }
        .eco-card {
            padding: 1.6rem 1rem 1.2rem 1rem;
        }
        .eco-card-title {
            margin-top: 1.3rem;
        }
    }