        /* CSS will be placed here */
        :root {
            --primary-blue: #004a92;
            --secondary-blue: #0065b3;
            --nav-blue: #4eaffa;
            --accent-red: #e40521;
            --light-gray: #f5f5f5;
            --dark-gray: #333333;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary-blue);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 4px solid var(--nav-blue);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 15px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 70px;
        }
        
        .logo-text {
            margin-left: 10px;
        }
        
        .logo-text h1 {
            font-size: 22px;
            color: var(--white);
            font-weight: 700;
        }
        
        .logo-text p {
            font-size: 12px;
            color: var(--nav-blue);
        }
        
        /* Navigation Styles */
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        nav.desktop-nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        nav.desktop-nav ul li a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        nav.desktop-nav ul li a:hover {
            color: var(--nav-blue);
        }
        
        nav.desktop-nav ul li a.active {
            color: var(--nav-blue);
            font-weight: 600;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--white);
            cursor: pointer;
        }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--white);
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: left 0.3s ease;
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding:0px 10px;
            background-color: var(--primary-blue);
        }
        
        .mobile-nav-header .logo {
            color: var(--white);
        }
        
        .close-mobile-menu {
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
        }
        
        .mobile-nav ul {
            list-style: none;
            padding: 20px;
        }
        
        .mobile-nav ul li {
            margin-bottom: 15px;
        }
        
        .mobile-nav ul li a {
            text-decoration: none;
            color: var(--primary-blue);
            font-size: 16px;
            display: block;
            padding: 10px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        
        .mobile-nav ul li a:hover {
            background-color: var(--light-gray);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }
        
        .overlay.active {
            display: block;
        }
        
        /* Hero Section */
        .hero {
            background-color: var(--light-gray);
            /* padding: 60px 0; */
            position: relative;
        }

        .hero .container{ max-width: 100%; padding:0px ;}

        
        .swiper {
            width: 100%;
            /* height: 400px; */
            /* border-radius: 10px; */
            overflow: hidden;
        }
        
        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
         }

        .slider-mask{
            background-size:cover;
             background-repeat: no-repeat;
             height:650px;
        }
        
        .slider-mask::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 74, 146, 0.6);
        }
        
        .slide-content {
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
            color: var(--white);
            text-align: center;
            padding: 0 20px;
            max-width: 800px;
            margin: 0 auto;
            }
        
        .slide-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 700;
            color: #4ba7ee;
        }
        
        .slide-content p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent-red);
            color: var(--white);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
            width: 50%;
            align-self: center;
        }
        
        .btn:hover {
            background-color: #c0041c;
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--nav-blue) !important;
        }

        
        .swiper-pagination-bullet-active {
            background: var(--accent-red) !important;
        }
        
        /* Loan Calculator Section */
        .calculator-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .calculator-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .calculator-form {
            flex: 1;
            min-width: 300px;
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary-blue);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-blue);
            outline: none;
        }
        
        .range-slider {
            width: 100%;
            margin-top: 10px;
        }
        
        .calculator-result {
            flex: 1;
            min-width: 300px;
            background-color: var(--primary-blue);
            padding: 30px;
            border-radius: 10px;
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .result-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .result-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .result-item .label {
            font-weight: 500;
        }
        
        .result-item .value {
            font-weight: 600;
        }
        
        .total-payment {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid var(--accent-red);
        }
        
        .total-payment .value {
            font-size: 24px;
            color: var(--accent-red);
        }
        
        /* Loan Services Section */
        .services-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card p{font-size: 15px;}

        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 20px;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .service-content p {
            color: var(--dark-gray);
            margin-bottom: 20px;
        }
        
        .read-more {
            display: inline-block;
            color: var(--accent-red);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .read-more:hover {
            color: #c0041c;
        }
        
        /* Partners Section */
        .partners-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
            margin-top: 40px;
        }
        
        .partner-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
            padding:10px;
            background-color: var(--light-gray);
            border-radius: 5px;
            transition: transform 0.3s;
        }
        
        .partner-logo:hover {
            transform: scale(1.05);
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            /* filter: grayscale(100%); */
            /* opacity: 0.7; */
            transition: filter 0.3s, opacity 0.3s;
        }
        
        .partner-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 40px auto 0;
        }
 

        .testimonial-card {
            background-color: var(--white);
            padding:60px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 20px;
            text-align: center;
        }
        
        .testimonial-card .quote {
            font-size: 16px;
            color: var(--primary-blue);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }
        
        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-details h4 {
            font-size: 18px;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }
        
        .client-details p {
            color: var(--dark-gray);
            font-size: 14px;
        }
        
        .testimonial-slider .swiper-pagination-bullet {
            background: var(--primary-blue);
        }
        
        .testimonial-slider .swiper-pagination-bullet-active {
            background: var(--accent-red);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 60px 0 20px;
            font-size: 15px;


        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-red);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: #d1d1d1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: var(--white);
        }
        
        .footer-col .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-col .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: background-color 0.3s;
        }
        
        .footer-col .social-links a:hover {
            background-color: var(--accent-red);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 13px;
            color: #d1d1d1;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .swiper {
            }
            
            .slide-content h2 {
                font-size: 16px;
            }
            
            .slide-content p {
                font-size: 12px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav.desktop-nav {
                display: none;
            }
            
            .swiper {
             }
            
            .slide-content h2 {
                font-size:18px;
            }

                        .slide-content p {
                            padding: 0px 50px;
            }
            
            .calculator-container {
                flex-direction: column;
            }
            
            .calculator-form, .calculator-result {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 18px;
            }
            
            .swiper {
             }
            
            .slide-content h2 {
                font-size: 22px;
                margin-bottom: 15px;
            }
            
            .slide-content p {
                font-size: 14px;
                margin-bottom: 20px;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card .quote {
                font-size: 16px;
            }
        }


        /* whatsap integration */

        .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 300px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            z-index: 999;
            overflow: hidden;
            transform: translateY(20px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
          }
          
          .whatsapp-widget.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
          }
          
          .whatsapp-header {
            background: #25D366;
            color: white;
            padding: 15px;
            display: flex;
            align-items: center;
            position: relative;
          }
          
          .whatsapp-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
          }
          
          .whatsapp-avatar img {
            width: 90%;
            height: 90%;
            border-radius: 50%;
            object-fit: cover;
          }
          
          .whatsapp-info h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
          }
          
          .whatsapp-info p {
            margin: 3px 0 0;
            font-size: 12px;
            opacity: 0.9;
          }
          
          .whatsapp-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
          }
          
          .whatsapp-body {
            padding: 15px;
            background: #f5f5f5;
            border-bottom: 1px solid #e5e5e5;
          }
          
          .whatsapp-body p {
            margin: 0;
            font-size: 14px;
            color: #333;
          }
          
          .whatsapp-button {
            display: block;
            background: #25D366;
            color: white;
            text-align: center;
            padding: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.3s;
          }
          
          .whatsapp-button:hover {
            background: #128C7E;
          }
          
          .whatsapp-button i {
            margin-right: 8px;
            font-size: 16px;
          }
          
          .whatsapp-launcher {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
            cursor: pointer;
            z-index: 998;
            transition: all 0.3s ease;
          }
          
          .whatsapp-launcher:hover {
            background: #128C7E;
            transform: scale(1.1);
          }
         /* whatsap integration */

 /* contact page */

 .contact-hero {
    background: linear-gradient(rgba(0, 74, 146, 0.8), rgba(0, 74, 146, 0.8)), url('../images/contact-header.jpg');
    background-size: cover;
    background-position: bottom;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.contact-info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.map-row{ display: flex; flex-direction: row; gap: 5%;}
.map-row div.col{ width: 50%;}

.contact-form {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #c0041c;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
    }

    .map-row{ display: flex; flex-direction: column; gap:30px;}
    .map-row div.col{ width:100%;}

}


/* land purchase loan */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    color: #1a237e; /* Deep blue from kannurloanservice.com */
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e40521; /* Gold/orange accent from kannurloanservice.com */
}

/* Loan Section Styles */
.loan-section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 40px;
    border-top: 4px solid #e40521;
}

/* Flexbox Layout */
.loan-container {
    display: flex;
    flex-wrap: wrap;
}

.loan-image {
    flex: 1 1 300px;
    min-height: 300px;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

.loan-content {
    flex: 2 1 600px;
    padding: 30px;
}

.loan-content h3 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.loan-content p {
    margin-bottom: 15px;
    color: #555;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.feature-box {
    flex: 1 1 200px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #e40521;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-box h4 {
    color: #1a237e;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background-color: #e40521;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 15px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 10px;
    border: 2px solid #e40521;
}

.cta-button:hover {
    background-color: #e40521;
    border-color: #e40521;
    color: #fff;
}

.secondary-button {
    background-color: transparent;
    color: #1a237e;
    border: 2px solid #1a237e;
}

.secondary-button:hover {
    background-color: #1a237e;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .loan-container {
        flex-direction: column;
    }
    
    .loan-image {
        min-height: 200px;
        order: -1; /* Moves image to top on mobile */
    }
    
    .loan-content {
        padding: 20px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .loan-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features {
        flex-direction: column;
    }
    
    .feature-box {
        flex: 1 1 auto;
    }
    
    .container {
        padding: 15px;
    }
}


/* Loan against property */


.land-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.land-service-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.land-service-header h1 {
    color: #0a4b7a;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.land-service-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Content Flexbox */
.land-service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.land-service-description {
    flex: 1 1 60%;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #0a4b7a;
}

.land-service-description h2 {
    color: #0a4b7a;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.land-service-description p {
    margin-bottom: 15px;
    color: #555;
}

.land-service-features {
    flex: 1 1 30%;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #e40521;
}

.land-service-features h2 {
    color: #0a4b7a;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.land-features-list {
    list-style-type: none;
}

.land-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    color: #555;
}

.land-features-list li:last-child {
    border-bottom: none;
}

.land-features-list li::before {
    content: "✓";
    color: #e40521;
    font-weight: bold;
    margin-right: 10px;
}

/* Eligibility Section */
.land-eligibility-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border-top: 4px solid #0a4b7a;
}

.land-eligibility-section h2 {
    color: #0a4b7a;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.land-eligibility-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.land-eligibility-card {
    flex: 1 1 200px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #0a4b7a;
}

.land-eligibility-card h3 {
    color: #0a4b7a;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.land-eligibility-card p {
    color: #555;
}

/* Documents Section */
.land-documents-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #e40521;
}

.land-documents-section h2 {
    color: #0a4b7a;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.land-documents-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.land-document-card {
    flex: 1 1 200px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #1a237e;
}

.land-document-card h3 {
    color: #0a4b7a;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.land-document-card p {
    color: #555;
}

 
 

 

/* Responsive Adjustments */
@media (max-width: 768px) {
    .land-service-header h1 {
        font-size: 2rem;
    }
    
    .land-service-content {
        flex-direction: column;
    }
    
    .land-eligibility-card, .land-document-card {
        flex: 1 1 100%;
    }
}

.center-align{
text-align: center
}


/* health insurance */


.health-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.health-header {
    background-color: var(--health-primary-color);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.health-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.health-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.health-logo span {
    color: var(--health-secondary-color);
}

.health-nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.health-nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.health-nav ul li a:hover {
    color: var(--health-secondary-color);
}

/* Hero Section */
.health-hero {
    background: linear-gradient(rgba(13, 54, 146, 0.8), rgba(13, 54, 146, 0.9)), url('https://images.unsplash.com/photo-1505751172876-fa1923c5c528?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.health-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.health-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.health-btn {
    display: inline-block;
    background-color:#004a92;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.health-btn:hover {
    background-color: #e05d00;
    transform: translateY(-2px);
}

/* Insurance Plans Section */
.health-plans-section {
    padding: 4rem 0;
}

.health-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.health-section-title h2 {
    font-size: 2rem;
    color: var(--health-primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.health-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--health-secondary-color);
}

.health-plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.health-plan-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.health-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.health-plan-header {
    background-color:#e40521    ;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.health-plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.health-plan-body {
    padding: 1.5rem;
}

.health-plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.health-plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.health-plan-features li:last-child {
    border-bottom: none;
}

.health-plan-features li::before {
    content: '✓';
    color: var(--health-secondary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Benefits Section */
.health-benefits-section {
    background-color: var(--health-light-color);
    padding: 4rem 0;
}

.health-benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.health-benefit-card {
    flex: 1 1 300px;
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.health-benefit-icon {
    font-size: 3rem;
    color:#004a92;
    margin-bottom: 1rem;
}

.health-benefit-card h3 {
    color: var(--health-primary-color);
    margin-bottom: 1rem;
}
 
/* Responsive Adjustments */
@media (max-width: 768px) {
    .health-header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .health-nav ul {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .health-hero h1 {
        font-size: 2rem;
    }
    
    .health-hero p {
        font-size: 1rem;
    }
    
    .health-plans-container,
    .health-benefits-container,
    .health-contact-container,
    .health-footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .health-plan-card,
    .health-benefit-card,
    .health-contact-info,
    .health-contact-form,
    .health-footer-col {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* car insurance */

.car-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Hero Section */
.car-hero {
    background: linear-gradient(rgba(13, 54, 146, 0.8), rgba(13, 54, 146, 0.9)), url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.car-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.car-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.car-btn {
    display: inline-block;
    background-color:#0065b3;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.car-btn:hover {
    background-color: #e05d00;
    transform: translateY(-2px);
}

/* Insurance Plans Section */
.car-plans-section {
    padding: 4rem 0;
}

.car-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.car-section-title h2 {
    font-size: 2rem;
    color: var(--car-primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.car-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--car-secondary-color);
}

.car-plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.car-plan-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.car-plan-header {
    background-color:#004a92;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.car-plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.car-plan-body {
    padding: 1.5rem;
}

.car-plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.car-plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.car-plan-features li:last-child {
    border-bottom: none;
}

.car-plan-features li::before {
    content: '✓';
    color: var(--car-secondary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Coverage Types Section */
.car-coverage-section {
    background-color: var(--car-light-color);
    padding: 4rem 0;
}

.car-coverage-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.car-coverage-card {
    flex: 1 1 300px;
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.car-coverage-icon {
    font-size: 3rem;
    color:#e40521;
    margin-bottom: 1rem;
}

.car-coverage-card h3 {
    color:#004a92;
    margin-bottom: 1rem;
}
 
 
/* FAQ Section */
.car-faq-section {
    padding: 4rem 0;
}

.car-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.car-faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.car-faq-question {
    padding: 1rem;
    background-color: var(--car-light-color);
    color:#004a92;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.car-faq-answer {
    padding: 1rem;
    background-color: white;
    display: none;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .car-header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .car-nav ul {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .car-hero h1 {
        font-size: 2rem;
    }
    
    .car-hero p {
        font-size: 1rem;
    }
    
    .car-plans-container,
    .car-coverage-container,
    .car-contact-container,
    .car-footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .car-plan-card,
    .car-coverage-card,
    .car-contact-info,
    .car-contact-form,
    .car-footer-col {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
 
}


/* business loan */

.business-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.business-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.business-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.business-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Flexbox Layout for Loan Features */
.business-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.business-feature-card {
    flex: 1 1 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.business-feature-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.business-feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Loan Types Section */
.business-loan-types {
    margin: 60px 0;
}

.business-loan-types h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2rem;
}

.business-types-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.business-loan-type {
    flex: 1 1 250px;
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.business-loan-type h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}

.business-loan-type ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.business-loan-type li {
    margin-bottom: 8px;
}

/* CTA Section */
.business-cta {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 50px 20px;
    border-radius: 10px;
    margin: 60px 0;
    text-align: center;
}

.business-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.business-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.business-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.business-cta-button {
    display: inline-block;
    background: white;
    color: #3498db;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.business-cta-button:hover {
    background: #f1f1f1;
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .business-header h1 {
        font-size: 2rem;
    }
    
    .business-feature-card {
        flex: 1 1 100%;
    }
    
    .business-loan-type {
        flex: 1 1 100%;
    }
}

/* Personal loan  */

/* Layout Components */
.personal-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.personal-header {
    background-color: #1a5276;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.personal-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.personal-logo {
    font-size: 24px;
    font-weight: bold;
}

.personal-logo span {
    color: #f39c12;
}

.personal-nav ul {
    display: flex;
    list-style: none;
}

.personal-nav li {
    margin-left: 20px;
}

.personal-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.personal-nav a:hover {
    color: #f39c12;
}

.personal-mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Breadcrumb */
.personal-breadcrumb {
    padding: 15px 0;
    background-color: #eaeaea;
    font-size: 14px;
}

.personal-breadcrumb a {
    color: #1a5276;
    text-decoration: none;
}

.personal-breadcrumb a:hover {
    text-decoration: underline;
}

/* Hero Section */
.personal-hero {
    background: linear-gradient(rgba(3, 20, 117, 0.7), rgba(0, 16, 88, 0.7)), url('../images/personal-loan.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.personal-hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.personal-hero-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Button Styles */
.personal-btn {
    display: inline-block;
    background-color: #e40521;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.personal-btn:hover {
    background-color: #e67e22;
}

.personal-btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.personal-btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Highlights Section */
.personal-highlights {
    background-color: white;
    padding: 40px 0;
    margin-top: -40px;
    border-radius: 10px 10px 0 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}

.personal-highlight-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.personal-highlight-card {
    flex: 1 1 200px;
    text-align: center;
    padding: 25px 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.personal-highlight-title {
    color: #1a5276;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Content Sections */
.personal-content-section {
    padding: 60px 0;
    background-color: white;
}

.personal-content {
    max-width: 800px;
    margin: 0 auto;
}

.personal-section-title {
    color: #1a5276;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f39c12;
    font-size: 28px;
}

.personal-section-subtitle {
    color: #1a5276;
    margin: 40px 0 20px;
    font-size: 22px;
}

.personal-text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.personal-list, .personal-numbered-list {
    margin-bottom: 25px;
    padding-left: 25px;
}

.personal-list-item {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Features Grid */
.personal-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.personal-feature-box {
    flex: 1 1 200px;
    background-color: #f9f9f9;
    padding: 25px;
    border-left: 4px solid #f39c12;
    border-radius: 5px;
}

.personal-feature-title {
    color: #1a5276;
    margin-bottom: 12px;
    font-size: 18px;
}

/* Info Boxes */
.personal-info-box {
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.personal-eligibility {
    background-color: #f8f9fa;
    border-left: 4px solid #2ecc71;
}

.personal-documents {
    background-color: #f0f7fb;
    border-left: 4px solid #3498db;
}

.personal-charges {
    background-color: #fef5e7;
    border-left: 4px solid #f39c12;
}

 
/* Responsive Styles */
@media (max-width: 768px) {
    .personal-header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .personal-logo {
        margin-bottom: 15px;
    }
    
    .personal-nav ul {
        margin-top: 15px;
        justify-content: center;
    }
    
    .personal-nav li {
        margin: 0 10px;
    }
    
    .personal-hero-title {
        font-size: 2rem;
    }
    
    .personal-hero-text {
        font-size: 1rem;
    }
    
    .personal-highlight-card {
        flex: 1 1 150px;
        padding: 20px 10px;
    }
    
    .personal-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .personal-btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .personal-mobile-menu {
        display: block;
    }
    
    .personal-nav {
        width: 100%;
        display: none;
    }
    
    .personal-nav.active {
        display: block;
    }
    
    .personal-nav ul {
        flex-direction: column;
        margin-top: 15px;
    }
    
    .personal-nav li {
        margin: 5px 0;
    }
    
    .personal-hero {
        padding: 60px 0;
    }
    
    .personal-hero-title {
        font-size: 1.8rem;
    }
    
    .personal-section-title {
        font-size: 24px;
    }
    
    .personal-section-subtitle {
        font-size: 20px;
    }
}


.life-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

 
/* Features Section */
.life-features {
    padding: 60px 0;
}

.life-section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    color: #0056b3;
}

.life-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.life-feature-card {
    flex: 1 1 300px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #fd7e14;
}

.life-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.life-feature-icon {
    font-size: 2.5rem;
    color: #fd7e14;
    margin-bottom: 20px;
}

/* Benefits Section */
.life-benefits {
    padding: 60px 0;
    background-color: #e9f0f8;
}

.life-benefits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.life-benefits-content {
    flex: 1 1 400px;
}

.life-benefits-image {
    flex: 1 1 400px;
    background-color: #ddd;
    border-radius: 10px;
    min-height: 300px;
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=80');
    background-size: cover;
    background-position: center;
}

.life-benefits-list {
    list-style: none;
}

.life-benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.life-benefits-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #fd7e14;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .life-header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .life-nav ul {
        margin-top: 20px;
        justify-content: center;
    }
    
    .life-nav ul li {
        margin: 0 10px;
    }
    
    .life-hero h1 {
        font-size: 2rem;
    }
    
    .life-hero p {
        font-size: 1rem;
    }
    
    .life-contact-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .life-hero {
        padding: 60px 0;
    }
    
    .life-hero h1 {
        font-size: 1.8rem;
    }
    
    .life-feature-card, .life-testimonial-card {
        flex: 1 1 100%;
    }
    
    .life-footer-column {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }
}



/* vehicle insurance */

.vehicle-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

  
.vehicle-content {
    max-width: 900px;
    margin: 0 auto;
}

.vehicle-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.vehicle-section-title {
    color:#004a92;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.vehicle-section-text {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.vehicle-benefits-list {
    list-style-type: none;
    margin: 1.5rem 0;
}

.vehicle-benefit-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.vehicle-benefit-item:before {
    content: "✓";
    color:#e05d00;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.vehicle-footer {
    background-color: var(--vehicle-primary-color);
    color: var(--vehicle-light-text);
    text-align: center;
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .vehicle-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .vehicle-hero-title {
        font-size: 2rem;
    }
    
    .vehicle-section {
        padding: 1.5rem;
    }
}
