  :root {
            --light-blue: #e3f2fd;
            --white: #ffffff;
            --dark-blue: #0d47a1;
            --text-dark: #333333;
            --text-light: #666666;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--dark-blue);
        }
        
        .btn-primary {
            background-color: var(--dark-blue);
            border-color: var(--dark-blue);
            padding: 10px 25px;
            font-weight: 500;
        }
        
        .btn-primary:hover {
            background-color: #0b3d91;
            border-color: #0b3d91;
        }
        
        /* Navbar */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand img {
            max-width: 250px;
            height: auto;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--dark-blue) !important;
        }
         /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(227, 242, 253, 0.8), rgba(227, 242, 253, 0.9)), url('./images/about-us.jpg') no-repeat center center;
            background-size: cover;
            padding: 100px 0 100px;
            color: var(--text-dark);
        }
        
        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark-blue);
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
      
       /* Section Styling */
        .section-padding {
            padding: 40px 0;
        }
        
        .section-title {
            margin-bottom: 50px;
            text-align: center;
        }
        
        .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(--dark-blue);
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: auto;
        }
        

        /*highlight section */

        .hg-section{
              background-color: var(--light-blue);
        }
        
      /* Services Section */
        .services-section {
            background-color: var(--light-blue);
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }
          
        /* Why Choose Us Section */
        .feature-box {
            text-align: center;
            padding: 20px;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }
        
        /* Caregiver Options Section */
        .caregiver-options-section {
            background-color: var(--light-blue);
        }
        
        .option-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
            text-align: center;
        }
        
        .option-card:hover {
            transform: translateY(-10px);
        }
        
        .option-icon {
            font-size: 3.5rem;
            color: var(--dark-blue);
            margin-bottom: 25px;
        }
        
        .option-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark-blue);
        }
        
        .option-list {
            text-align: left;
            margin: 25px 0;
        }
        
        .option-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }
        
        .option-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--dark-blue);
            position: absolute;
            left: 0;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: var(--light-blue);
        }
        
        .faq-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .faq-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-blue);
            margin-bottom: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            color: var(--text-light);
            display: none;
            padding-top: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .faq-answer.show {
            display: block;
        }
        
        .faq-icon {
            color: var(--dark-blue);
            transition: transform 0.3s ease;
        }
        
        .faq-card.active .faq-icon {
            transform: rotate(180deg);
        }
        
        
        /* Contact Section */
        .contact-form {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-control {
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .form-control:focus {
            border-color: var(--dark-blue);
            box-shadow: 0 0 0 0.2rem rgba(13, 71, 161, 0.25);
        }
        
        .contact-info {
            padding-left: 30px;
        }
        
        .contact-item {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-icon {
            font-size: 1.2rem;
            color: var(--dark-blue);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        

        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            line-height: 1;
        }
        
        .footer-logo .logo-top {
            font-size: 1.4rem;
            font-weight: 700;
        }
        
        .footer-logo .logo-bottom {
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        .footer-links h5 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--white);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            color: var(--white);
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--white);
            color: var(--dark-blue);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Medicaid Highlight */
        .medicaid-highlight {
            background-color: var(--dark-blue);
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
            font-weight: 600;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            
            .hero-section {
                padding: 120px 0 80px;
                text-align: center;
            }
            
            .section-padding {
                padding: 0px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .contact-info {
                padding-left: 0;
                margin-top: 40px;
            }
            
            .navbar-brand img {
                max-width: 200px;
            }
            
            .option-card {
                margin-bottom: 30px;
            }
            
            .hero-section .medicaid-highlight {
                font-size: 0.9rem;
                padding: 10px 15px;
            }
            
            .option-icon {
                font-size: 2.5rem;
            }
            
            .option-title {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 1.8rem;
            }
            
            .hero-section p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .navbar-brand img {
                max-width: 180px;
            }
            
            .btn-primary {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
            
            .option-card {
                padding: 25px 20px;
            }
            
            .service-card {
                padding: 20px 15px;
            }
            
            .contact-form {
                padding: 20px 15px;
            }
        }
        
        .navbar-nav .nav-link.active {
            color: #0d47a1 !important;
            font-weight: 600;
        }
        
        .navbar {
            transition: all 0.3s ease;
        }
    

    