body {
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    color: #111;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    background: #fff;
}

.logo {
    font-size: 1.2rem;
    font-weight: 500;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5em;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #111;
    font-weight: 400;
    font-size: 0.95rem;
    padding-bottom: 0.25em;
    position: relative;
}

    nav a:hover {
        color: #000;
    }

/* Active/Selected menu styling example (optional) */
/* nav a:hover::after {
    content: "";
    display: block;
    height: 2px;
    background: #000;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
} */

/* Quote Section */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    text-align: center;
    background: #f9f9f9;
    padding: 0 1em;
}

.quote-section h1 {
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
    margin-bottom: 0.5em;
    color: #111;
    font-style: italic;
}

.quote-section p {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    color: #111;
}

/* Wavy line at the bottom */
.wavy-line {
    width: 100%;
    height: 100px;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
    margin-top: 2em;
}

    .wavy-line::before {
        content: "";
        position: absolute;
        width: 200%;
        height: 200%;
        background: #fff;
        left: -50%;
        top: -50%;
        border-radius: 40% 40% 0 0;
        transform: scaleX(0.5);
    }

/* Responsive Adjustments */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5em;
        margin-top: 1em;
    }

    .quote-section h1 {
        font-size: 1.7rem;
    }

    .quote-section p {
        font-size: 1.2rem;
    }

    .wavy-line {
        height: 60px;
    }
}
