:root {
            --primary-color: #2c5aa0;
            --secondary-color: #1e3d6f;
            --accent-color: #28a745;
	--green-color: #1b8834;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 100px 0;
            position: relative;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/1x1_placeholder.png') center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .btn-primary-custom {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
			color:#fff;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: #218838;
            border-color: #218838;
			color:#fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
        }
        
        .btn-outline-custom {
            color: white;
            border: 2px solid white;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .feature-card {
            background: white;
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
        }
        
        .insurance-card {
            background: white;
            border: none;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .insurance-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .insurance-card .card-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 25px;
            text-align: center;
        }
        
        .insurance-card .card-header h4 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .process-step {
            text-align: center;
            padding: 30px 15px;
        }
        
        .process-number {
            background: var(--accent-color);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .stats-section {
            background: var(--light-bg);
            padding: 80px 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-color);
            display: block;
        }
        
        .final-expense-highlight {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 5px solid var(--accent-color);
            padding: 40px;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .navbar {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
			    z-index: 11;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color) !important;
        }
        
        .footer {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-text);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 50px;
        }
        
        .advantage-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .advantage-item i {
            color: var(--accent-color);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 10px;
            padding: 8px 0;
            min-width: 200px;
        }
        
        .dropdown-item {
            padding: 8px 20px;
            font-size: 0.9rem;
            color: var(--dark-text);
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--light-bg);
            color: var(--primary-color);
            padding-left: 25px;
        }
        
        .dropdown-item i {
            width: 16px;
            margin-right: 10px;
            color: var(--primary-color);
        }
.footer-menu li{
	margin-bottom:0.5rem;
}
.footer-menu a, .footer-social a{
	color:#fff;
	text-decoration:none;
}

.accordion-flush .accordion-header button {
    font-size: 18px;
    font-weight: 500;
}
.hero-content p{margin:0}
.form-control{font-size: 16px}
.list-unstyled li{display:flex; align-items: start}
.list-unstyled li i{margin-top: 5px}
.float-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;    z-index: 99;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
	  background-color: var(--accent-color);
  }
  50% {
    transform: scale(1.05);background-color: var(--green-color);
  }
  100% {
    transform: scale(1);background-color: var(--accent-color);
  }
}


    .navbar-expand-lg .navbar-nav {
        align-items: center;
    }
.navbar-expand-lg .navbar-nav .nav-link {
    /* line-height: 47px; */
    text-transform: uppercase;
    padding: 0 12px;
    font-size: 15px;
    color: var(--dark-text);
    font-weight: 400;
}

.display-4 span{  font-size: 2rem;
}
@media only screen and (max-width: 1399px){
	.display-4 {
        font-size: 3.2rem;
    }
	.section-subtitle {
    font-size: 18px;
}
}
@media only screen and (max-width: 767px){
	.display-4 {font-size: 2.5rem;}
	.section-title { font-size: 2rem;}
	.final-expense-highlight {
    padding: 30px;
}
}
@media only screen and (max-width: 575px){
.float-btn {
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
}
}