
        :root {
            --primary-color: #003566;
            --accent-color: #ffc300;
            --text-color: #ffffff;
            --light-bg: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            color: var(--accent-color);
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .btn-cta {
            background-color: var(--accent-color);
            color: var(--primary-color);
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            background-color: var(--primary-color);
            color: var(--text-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 53, 102, 0.8), rgba(0, 53, 102, 0.8)), url('https://images.pexels.com/photos/40568/medical-appointment-doctor-healthcare-40568.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            color: var(--text-color);
            padding: 120px 0;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            bottom: -10px;
            left: 25%;
            background-color: var(--accent-color);
        }
        
        .section-subtitle {
            color: #666;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .counter-box p {
            color: #666;
        }
        
        .vm-box {
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vm-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .vm-box i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .vm-box h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 15px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .process-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: var(--text-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
        }
        
        .service-card {
            background-color: var(--light-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card h4 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .service-card p {
            flex-grow: 1;
            color: #666;
        }
        
        .review-card {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .review-card i {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin-right: 5px;
        }
        
        .review-card .quote-icon {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 3rem;
            color: rgba(0, 53, 102, 0.1);
        }
        
        .reviewer {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        
        .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .reviewer h5 {
            margin: 0;
            color: var(--primary-color);
        }
        
        .reviewer p {
            margin: 0;
            font-size: 0.9rem;
            color: #666;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: var(--text-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--accent-color);
        }
        
        .cta-section {
            background: linear-gradient(rgba(0, 53, 102, 0.9), rgba(0, 53, 102, 0.9)), url('https://images.pexels.com/photos/305568/pexels-photo-305568.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            color: var(--text-color);
            padding: 80px 0;
            text-align: center;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }
        
        .contact-form {
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: 10px;
        }
        
        .footer {
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 60px 0 20px;
        }
        
        .footer h4 {
            color: var(--accent-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-form input {
            flex-grow: 1;
            border: none;
            padding: 10px 15px;
            border-radius: 30px 0 0 30px;
        }
        
        .newsletter-form button {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 10px 20px;
            border-radius: 0 30px 30px 0;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--text-color);
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }
