
        :root {
            --coral: #FF7F50;
            --navy: #001F3F;
            --light-navy: #003366;
            --light-gray: #f8f9fa;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--navy);
        }
        
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: var(--navy);
            font-size: 1.5rem;
        }
        
        .navbar-brand i {
            color: var(--coral);
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--navy);
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--coral);
        }
        
        .btn-coral {
            background-color: var(--coral);
            color: white;
            font-weight: 500;
            padding: 10px 25px;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-coral:hover {
            background-color: #e67045;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
        }
        
        .btn-outline-coral {
            border: 2px solid var(--coral);
            color: var(--coral);
            font-weight: 500;
            padding: 10px 25px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-coral:hover {
            background-color: var(--coral);
            color: white;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 31, 63, 0.7)), 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;
            padding: 150px 0;
            color: white;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size:6rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero-section p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--coral);
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: auto;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: var(--light-gray);
            transition: all 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--coral);
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy);
        }
        
        .vision-mission-box {
            background-color: var(--light-gray);
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--coral);
            margin-bottom: 20px;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--coral);
            margin-bottom: 20px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 30px 20px;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 50%;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--coral);
            transform: translateY(-50%);
        }
        
        .process-step i {
            font-size: 2.5rem;
            color: var(--coral);
            margin-bottom: 15px;
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            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: 300px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 25px;
            background-color: var(--light-gray);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-body h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--navy);
            font-weight: 600;
        }
        
        .service-card-body p {
            flex-grow: 1;
        }
        
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            position: relative;
        }
        
        .review-card i {
            color: var(--coral);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .review-card .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
        }
        
        .review-card .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--coral);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--coral);
        }
        
        .cta-section {
            background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)), url('https://images.pexels.com/photos/4226140/pexels-photo-4226140.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .contact-info-box {
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--coral);
            margin-bottom: 15px;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .footer {
            background-color: var(--navy);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer h4 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--coral);
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: var(--coral);
            padding-left: 5px;
        }
        
        .footer .newsletter-form {
            position: relative;
        }
        
        .footer .newsletter-form input {
            border: none;
            border-radius: 50px;
            padding: 12px 20px;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .footer .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer .copyright a {
            color: var(--coral);
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .process-step:not(:last-child):after {
                display: none;
            }
        }
