body {
    background-color: #F8F2E7;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #3F000B;
    font-size: 20px;
}

.header {
    background-color: #FFC52E;
    color: #3F000B;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 150px;
    overflow: hidden;
    box-sizing: border-box;
}

.header::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: linear-gradient(135deg, #fff 25%, transparent 25%, transparent 50%, #fff 50%, #fff 75%, transparent 75%, transparent);
    background-size: 10px 10px;
}

.header img {
    width: 370px;
    height: 60%;
    object-fit: cover;
    margin-left: 20px; /* Adjust the margin as needed */
}

.header-content {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.header-content h2 {
    margin: 0;
    font-size: 1.5rem;
}

.header-content form {
    margin-top: 10px;
}

.header-content label {
    font-size: 1rem;
    margin-right: 10px;
}

.header-content select {
    padding: 5px;
    font-size: 1rem;
}

.container-fluid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}

.main-content-wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.text-content {
    flex: 2;
    padding-right: 2rem;
}

.resorts-logos {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.additional-content {
    display: flex;
    align-items: center; /* Center justify the text vertically */
    padding: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.additional-content > div,
.additional-content > img {
    flex: 1 1 50%;
    box-sizing: border-box;
}

.co1-image {
    max-width: 500px;
    height: auto;
    margin-right: 2rem;
}

.text-container {
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
}

.text-container h3 {
    margin: 0;
}

.text-container p {
    margin: 0;
    margin-bottom: 20px;
}

.learn-more-button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #3F000B;
    color: #3F000B;
    background-color: transparent;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    max-width: fit-content;
    font-weight: bold;
}

.learn-more-button:hover {
    background-color: #3F000B;
    color: #FFF;
}

.form-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

form {
    flex: 1;
}

a:visited {
    color: #3F000B;
}

a {
    color: #3F000B;
}

.large-form {
    width: 100%;
    max-width: 600px;
    padding: 0;
    box-sizing: border-box;
    text-align: left;
}

.large-form label {
    font-size: 1.3em;
    padding: 4px 0;
    font-weight: bold;
}

.large-form img.left-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.large-form form {
    display: flex;
    flex-direction: column;
    position: relative;
}

.large-form form .house-image {
    position: absolute;
    left: 220px;
    width: 32px;
    top: 2px;
}

.large-form button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #3F000B;
    background-color: #3F000B;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
}

.large-form label h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.large-form select {
    font-size: 1.2em;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.large-form .form-message {
    color: red;
    font-style: italic;
    margin-bottom: 10px;
    margin-top: -5px;
}

#overlay:not(.active) {
    display: none;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}
#overlay img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}


#response-container {
    background: lightblue;
    border: 1px solid #000;
    padding: .5em;

    h3 {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
    }

    .header img {
        width: 90%;
        height: auto;
        padding: 40px !important; /* Adjust the padding as needed */
    }

    .header-content {
        display: none;
    }

    .container-fluid {
        flex-direction: column;
        align-items: center;
    }

    .main-content-wrapper {
        flex-direction: column;
    }

    .text-content {
        padding-right: 0;
        text-align: left;
    }

    .additional-content {
        flex-direction: column;
        align-items: center;
    }

    .additional-content > div,
    .additional-content > img {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        margin: 10px 0;
        padding: 0;
        border-radius: 20px !important;
    }

    .co1-image {
        margin: 0 0 10px 0;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .text-container {
        padding: 0;
        text-align: center;
    }

    .additional-content > p {
        text-align: center;
    }

    .learn-more-button {
        width: 80%;
        max-width: 80%;
        margin: 10px auto;
    }

    .additional-content {
        display: flex;
        flex-direction: column;
    }
}