
        :root {
            --primary-color: #355070;
            --secondary-color: #6d597a;
            --accent-color: #b56576;
            --light-bg: #f8f9fa;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--primary-color);
        }
        
        .navbar {
            background-color: transparent !important;
            padding: 20px 0;
        }
        
        .hero-section {
            background: linear-gradient(rgba(53, 80, 112, 0.85), rgba(53, 80, 112, 0.85)), url('https://static.vecteezy.com/system/resources/previews/025/074/876/non_2x/protection-and-insurance-concept-car-home-and-health-preventing-and-evaluating-potential-business-investment-benefits-life-insurance-protect-your-family-and-loved-ones-from-accidents-free-photo.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 600;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .counter-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
        }
        
        .counter-text {
            font-size: 16px;
            color: var(--primary-color);
        }
        
        .why-us-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .why-us-icon {
            font-size: 24px;
            color: var(--accent-color);
            margin-right: 15px;
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-image {
            height: 200px;
            object-fit: cover;
        }
        
        .review-item {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .faq-item {
            border: none;
            border-bottom: 1px solid #e9ecef;
        }
        
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }
        
        .footer ul li a:hover {
            color: white;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            margin-top: 30px;
        }
        
        .process-step {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: var(--light-bg);
            margin-bottom: 20px;
        }
        
        .process-icon {
            font-size: 36px;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .nav-item a{
            color:black !important
        }

        section{
            margin-top:50px !important;
            margin-bottom:50px !important;
        }

        .bg-light{
            padding:80px;
        }

        .py-101{
            padding:100px !important;
        } 

        .section-title{
            margin-bottom:100px !important;
        }
