body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.hero-wrapper {
    width: 40%;
    margin: auto;
}

.hero-section {
    background: linear-gradient(135deg, #f9e1e5, #e5d4f6);
    padding: 2rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-circle img {
    width: 100%;
    height: auto;
}

.text-content {
    text-align: center;
    flex: 1;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: #5c2d91;
}

.program-section {
    background-color: #fbeaea;
    padding: 1.5rem 2rem;
    text-align: center;
    border-radius: 20px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.program-section h3 {
    font-weight: 600;
    font-size: 1.5rem;
    color: #5c2d91;
    margin-bottom: 0.5rem;
}

.program-section p {
    font-size: 1rem;
    color: #333;
}

@media (max-width: 768px) {
    .hero-wrapper {
        width: 90%;
    }

    .hero-content {
        flex-direction: column;
    }
}

.gender-section {
    background: linear-gradient(to right, #fdfbfb, #ebedee); /* Soft gradient */
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    padding: 40px;
  }