    body {
        font-family: 'Inter', sans-serif;
        background-color: #fef3f8;
        margin: 0;
        /*padding: 0;*/
        padding-top: 80px;
    }

    .hero-section {
        background-image: url('backgroundimage4.JPG'); /* Replace with your image path */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 90vh;
        width: 100%;
        position: relative;
    }

    @media (max-width: 768px) {
        .hero-section {
            height: 60vh;
        }
    }

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 800;
        color: black;
    }
    .hero-content p {
        font-size: 1.25rem;
    }
    .features-section {
        padding: 80px 0;
        background: #fff;
    }
    .feature-card {
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid #fce4ec;
        border-radius: 20px;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        padding: 30px;
        transition: transform 0.3s ease;
    }
    .feature-card:hover {
        transform: translateY(-10px);
    }
    .success-stories {
        background-color: #fff0f5;
        padding: 80px 0;
    }
    .story-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 30px;
        margin-bottom: 30px;
        text-align: center;
    }
    .story-card img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 20px;
    }
    footer {
        background-color: #4285F4;
    }
    .footer-links a {
        color: white;
        text-decoration: none;
        margin: 0 10px;
        display: inline-block;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
    .text-theme {
        color: #ff1493;
    }
    .btn-theme {
        background-color: #4285F4;
        color: white;
    }
    .btn-theme:hover {
        background-color: #4285F4;
        color: white;
    }

    .me-2 {
        margin-right: .5rem !important;
        height: 40px;
    }

    .mt-3 {
        margin-top: 1rem !important;
        color: #000000;
        font-weight: bold;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 0;
    }
    .hero-section .container {
        position: relative;
        z-index: 1;
    }
    #header_container {
        background: #fff;
        border: 0px solid #666;
        /* height: 80px;*/
        left: 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1;
    }