html,
body {
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    font-family: "Aleo", Georgia, serif;
    color: #000000;
    height: 100%;
    font-size: 32px;
    font-weight: normal;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    width: 100%;
    position: sticky;
    top: 0;
    background: #f5f5f5;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 20px;
}

.header__logo {
    font-family: "Aleo", Georgia, serif;
    font-weight: 700;
    font-size: 32px;
    color: #000000;
}

.nav__list {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin: 0 40px;
    padding: 0;
}

.nav__item {
    margin: 0;
}

.nav__link {
    text-decoration: none;
    color: #000000;
    font-weight: normal;
}

.nav__link:hover,
.nav__link:focus {
    text-decoration: underline;
    outline: none;
}

.nav__icon {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.hero__container {
    display: flex;
    align-items: flex-start;
    max-width: 960px;
    margin-top: 24px;
    gap: 20px;
}

.hero__text {
    flex: 1;
    max-width: 860px;
    text-align: left;
}

.hero__cta {
    margin-top: 32px;
    background-color: #000000;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.4em;
    box-sizing: border-box;
}

.hero__text p {
    font-size: 26px;
    font-weight: normal;
    line-height: 1.4em;
}

.hero__cta:hover,
.hero__cta:focus {
    opacity: 0.85;
    outline: none;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .nav__list {
        display: flex;
        flex-direction: column;
        position: static;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        gap: 10px;
        z-index: auto;
    }

    .nav__icon {
        display: none;
    }

    .hero__cta {
        width: 80%;
        max-width: 320px;
        margin: 0 auto;
    }
}
