* {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.header-section {
    position: relative;
    overflow: visible;
    height: 100%;
    width: 100vw;
}

.header-section::before {
    border-radius: 100%;
    position: absolute;
    background: radial-gradient(76.53% 29.28% at 68.11% 81.16%, #FFFAFB 0%, #FFEDF0 100%);
    right: -150px;
    left: -180px;
    top: -300px;
    content: '';
    bottom: 0;
    z-index: 1; /* Add this */
}

.header {
    margin-top: 12%;
    position: relative; /* Add this */
    z-index: 2; /* Add this */
}

.header h1 {
    margin-bottom: 5%;
    color: #E21E5B;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-weight: 800;
    font-size: 32px;
}

.wave-svg {
    position: absolute;
    top: 40%;
    right: 0;
    z-index: 4;
}

.about {
    margin-top: 2%;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 80vw;
    margin: 0 auto;
    padding: 48px 20px;
    position: relative;
    z-index: 0;
}

.about-content {
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

span {
    margin-right: 1%;
}

.highlight {
    color: #E21E5B;
}

p {
    font-size: 18px;
    color: #374151;
    line-height: 2;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 480px) {
    .wave-svg {
        display: none;
    }

    .header-section {
        padding-top: 65px; /* Adjusted for mobile navbar height */
        min-height: 200px; /* Minimum height for mobile */
    }

    .header-section::before {
        right: -50px;
        left: -50px;
        top: -200px;
    }

    .header {
        margin-top: 15%;
        padding: 0 16px;
    }

    .header h1 {
        font-size: 26px;
        margin-bottom: 8%;
    }

    .about {
        margin-top: -20px;
    }

    .container {
        padding: 24px 16px;
    }

    .about-content h2 {
        font-size: 20px;
        margin-top: 5%;
        margin-bottom: 24px;
        padding: 0;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 16px;
        padding: 0;
        color: #333;
    }

    .about-content p + p {
        margin-top: 16px;
    }

    .about-content h2 .highlight {
        display: inline;
        margin-right: 4px;
    }
}