  .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #071657;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ff5722, #ff9800);
        }
        
        .section-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.6;
        }
  
  /* Custom styles for language switcher */
        .language-dropdown {
            position: relative;
            display: inline-block;
        }
        
        .language-dropdown-toggle {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 5px 15px;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .language-dropdown-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .language-dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 150px;
            border-radius: 5px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 99999;
            margin-top: 5px;
        }
        
        .language-dropdown-menu.show {
            display: block;
        }
        
        .language-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            cursor: pointer;
            border-bottom: 1px solid #eee;
            color: #333;
        }
        
        .language-option:last-child {
            border-bottom: none;
        }
        
        .language-option:hover {
            background: #f8f9fa;
        }
        
        .language-option.active {
            background: #f0f7ff;
            color: #0d6efd;
        }
        
        .flag-icon {
            width: 20px;
            height: 15px;
            border-radius: 2px;
            object-fit: cover;
        }
        
        .current-flag {
            width: 20px;
            height: 15px;
            border-radius: 2px;
            object-fit: cover;
        }
        
        .current-language {
            font-size: 14px;
        }

        /* Ensure dropdown is always visible */
        .language-dropdown {
            position: relative;
            z-index: 99999 !important;
        }

        /* Dropdown menu visible over all navbar items */
        .language-dropdown-menu {
            position: absolute;
            z-index: 999999 !important;
        }

        /* FIX FOR MOBILE */
        @media (max-width: 991px) {
            .language-dropdown-menu {
                position: fixed;
                top: 70px;  /* chini ya navbar */
                right: 10px;
                width: 160px;
                border-radius: 8px;
            }

            .language-dropdown-toggle {
                width: 100%;
                justify-content: flex-start;
            }
        }

        /* Insurance Page Custom Styles */
        .insurance-main-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin: 50px 0;
            padding: 0 20px;
        }

        /* Accordion Styles */
        .accordion-container {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }

        .accordion-container h2 {
            color: #1e3a8a;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eaeaea;
            font-size: 1.8rem;
        }

        .accordion-item {
            border-bottom: 1px solid #eee;
            overflow: hidden;
        }

        .accordion-header {
            padding: 10px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to right, #ff5722, #ff9800);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background-color: #f9f9f9;
        }

        .accordion-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #f7f5f5;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .accordion-icon {
            font-size: 1.2rem;
            color: #f5efed;
        }

        .accordion-toggle {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff5722;
            background: #f3f4f7;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .accordion-toggle:hover {
            background-color: #eef5ff;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            padding: 0 20px;
        }

        .accordion-content.active {
            max-height: 500px;
            padding-bottom: 25px;
        }

        .accordion-content p {
            margin-bottom: 15px;
            color: #555;
            font-size: 1.05rem;
        }

        .accordion-content ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .accordion-content li {
            margin-bottom: 8px;
            color: #555;
        }

        .insurance-btn {
            display: inline-block;
            background: #ff5722;
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .insurance-btn:hover {
            background: #e73c08;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Image Slider Styles */
        .slider-container {
            flex: 1;
            min-width: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            height: 500px;
        }

        .slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
            transform: translateX(100%);
        }

        .slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .slide.prev {
            transform: translateX(-100%);
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 30px;
            border-radius: 0 0 12px 12px;
        }

        .slide-content h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .slide-content p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10;
        }

        .control-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slide-counter {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            z-index: 10;
        }

        /* Insurance Features */
        .insurance-features {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-top: 30px;
        }

        .insurance-features h2 {
            color: #084a88;
            margin-bottom: 20px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .feature-item {
            padding: 15px;
            border-left: 4px solid #ff5722;
            background: #f8f9fa;
            border-radius: 0 8px 8px 0;
        }

        .feature-item h3 {
            color: #ff5722;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .feature-item p {
            color: #555;
            font-size: 0.95rem;
        }

        /* Insurance Cards */
        .insurance-cards-container {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 30px 0;
        }

        .insurance-card {
            width: 300px;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            position: relative;
            box-shadow: 0 4px 18px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .insurance-card:hover {
            transform: translateY(-10px);
        }

        .insurance-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .card-icon-circle {
            width: 70px;
            height: 70px;
            background: #ff5722;
            border-radius: 50%;
            position: absolute;
            top: 150px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 24px;
            border: 4px solid white;
        }

        .card-body {
            padding: 60px 20px 30px;
        }

        .card-body h3 {
            margin-bottom: 10px;
            font-size: 20px;
            color: #222;
        }

        .card-body p {
            font-size: 15px;
            color: #555;
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .insurance-main-content {
                flex-direction: column;
            }
            
            .slider-container {
                height: 400px;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .slide-content h3 {
                font-size: 1.5rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .control-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .slider-container {
                height: 350px;
            }
            
            .slide-content h3 {
                font-size: 1.3rem;
            }
            
            .slide-content p {
                font-size: 0.9rem;
            }
            
            .accordion-container {
                padding: 15px;
            }
            
            .insurance-cards-container {
                padding: 15px;
            }
            
            .insurance-card {
                width: 100%;
                max-width: 300px;
            }
        }

        /* 3D Effect for Slides */
        .slide {
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .slide.active {
            animation: slideIn3D 0.8s ease-out forwards;
        }
        
        @keyframes slideIn3D {
            0% {
                opacity: 0;
                transform: translateX(100%) rotateY(-20deg);
            }
            100% {
                opacity: 1;
                transform: translateX(0) rotateY(0deg);
            }
        }
        
        .slide.prev {
            animation: slideOut3D 0.8s ease-out forwards;
        }
        
        @keyframes slideOut3D {
            0% {
                opacity: 1;
                transform: translateX(0) rotateY(0deg);
            }
            100% {
                opacity: 0;
                transform: translateX(-100%) rotateY(20deg);
            }
        }

        
@media (max-width: 991px) {
    .language-dropdown-menu {
        right: 0;
        left: auto;
        width: 150px;
        color: #333;
    }

    .current-language{
        color: #333;
        
    }
}

