.max-w-container {
    max-width: 1700px;
    margin: 0 auto;
}

.golf-content-container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.golf-hero-content {
    position: relative;
    z-index: 2;
}

strong {
    font-weight: bold;
}

.golf-list {
    list-style-type: disc;
    padding-left: 2em;
    display: flex;
    flex-direction: column;
    gap: 0.3em;
}

.main-hero-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.golf-hero-image {
    display: none;
}

.golf-article-wrapper {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.golf-article-text {
    width: 100%;
}


.golf-article-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.golf-faq-wrapper {
    padding-top: 4em;
    padding-bottom: 4em;
    width: 100%;
    background-color: var(--light-gray);
}

.golf-faq-wrapper--white {
    background-color: var(--white);
}

.golf-faq-content {
    display: grid;
    flex-direction: column;
    gap: 50px;
}

.golf-faq-text {
    position: relative;
    padding-bottom: 1em;

}

.golf-faq-wrapper h2 {
    margin: 0 0 2em 0;
    border-left: 3px solid var(--primary);
    padding: .5em;
}


.golf-faq-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 40%;
    border-bottom: 3px solid var(--primary);
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

@media only screen and (min-width: 1024px) {
    .golf-article-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .golf-faq-text h3 {
        min-height: 58px;
    }

    .golf-article-reverse {
        flex-direction: row-reverse;
    }

    .golf-article-title {
        font-size: 50px;
    }

    .main-hero-container {
        gap: 0;
        flex-direction: row;
    }

    .golf-hero-image {
        display: block;
        position: absolute;
        right: 0;
        top: 30%;
        z-index: 1;
        width: 30%;
        min-width: 540px;
        max-width: 1200px;
    }

    .golf-hero-content {
        max-width: 600px;
    }

    .golf-faq-wrapper h2 {
        font-size: 40px;
    }

    .golf-faq-content {
        gap: 4em;
        grid-template-columns: repeat(2, 1fr);
        position: relative;
    }

    .golf-article-image,
    .golf-article-text {
        width: 50%;
    }

    .contact-form-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media only screen and (min-width: 1280px) {
    .golf-hero-content {
        max-width: 800px;
    }

    .golf-hero-image {
        top: 20%;
        width: 60%;
        min-width: 830px;
    }
}