
        :root {
            --beige: #f5f5dc;
            --taupe: #8b8680;
            --white: #ffffff;
            --light-taupe: #d2c8c0;
            --dark-taupe: #5d5a56;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .navbar {
            padding: 1rem 0;
            background-color: transparent !important;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--taupe) !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-taupe) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--taupe) !important;
        }

        .nav-item{
            margin-left:35px;
        }
        
        .btn-primary-custom {
            background-color: var(--taupe);
            border-color: var(--taupe);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--dark-taupe);
            border-color: var(--dark-taupe);
            transform: translateY(-2px);
        }
        
        .hero-section {
            background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('https://media.istockphoto.com/id/1437830105/photo/cropped-shot-of-a-female-nurse-hold-her-senior-patients-hand-giving-support-doctor-helping.jpg?s=612x612&w=0&k=20&c=oKR-00at4oXr4tY5IxzqsswaLaaPsPRkdw2MJbYHWgA=');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            margin-top: -76px;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-weight: 700;
            color: var(--dark-taupe);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--taupe);
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
            background-color: var(--beige);
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--taupe);
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-taupe);
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--taupe);
            margin-bottom: 20px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 20px;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 50px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--taupe);
        }
        
        .process-step .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--taupe);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            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;
        }
        
        .service-card-body {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-title {
            font-weight: 600;
            color: var(--dark-taupe);
            margin-bottom: 15px;
        }
        
        .service-card-text {
            flex-grow: 1;
        }
        
        .review-card {
            background-color: var(--beige);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }
        
        .review-card .reviewer-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .booking-form {
            background-color: var(--beige);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--light-taupe);
            color: var(--white);
        }
        
        .cta-section {
            background-color: var(--taupe);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .contact-info-box {
            background-color: var(--beige);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--taupe);
            margin-right: 20px;
        }
        
        .footer {
            background-color: var(--dark-taupe);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            color: var(--beige);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--beige);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex-grow: 1;
            border: none;
            padding: 10px 15px;
            border-radius: 30px 0 0 30px;
        }
        
        .newsletter-form button {
            background-color: var(--taupe);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 0 30px 30px 0;
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .process-step:not(:last-child):after {
                display: none;
            }
        }
