@font-face {
    font-family: 'FWC26';
    src: url('../fonts/FWC26.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', Arial, sans-serif;
    background: #f2f2f2;
    color: #000;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 58%;
    max-width: 800px;
    margin: 0 auto;
}

/* HERO */

.hero {
   height: 520px;
    background: url('../images/hero.jpg') center top/contain no-repeat;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* TYPOGRAPHY */

h1,
h2,
h3,
h4,
.cta h3 {
    font-family: 'FWC26', Arial Black, Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
}

p,
li {
    font-size: 18px;
    line-height: 1.2;
}

/* INTRO */

.intro {
    padding: 70px 0 70px;
}

.intro h1 {
    font-size: 36px;
    margin-bottom: 40px;
}

.intro h2 {
    max-width: 1050px;
    font-size: 26px;
    margin-bottom: 40px;
}

.intro p {
    max-width: 1425px;
    margin-bottom: 40px;
}

.intro p:last-child {
    margin-bottom: 0;
}
/* ACCOMMODATION */

.accommodation-section {
    position: relative;
    z-index: 2;
}

.card-green {
    background: #64e8c8;
    padding: 55px 55px 70px;
    border-radius: 38px;
    position: relative;
    z-index: 2;
    margin-top: 0;
    margin-bottom: -70px;
	overflow: hidden;
}

.image-row {
   display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    margin-bottom: 42px;
}

.image-row img {
     width: calc((100% - 44px) / 3);
    height: auto;
    object-fit: contain;
    border-radius: 18px;
}

.card-green h3 {
    max-width: 620px;
    font-size: 26px;
    margin-bottom: 35px;
}

.card-green p {
    margin-bottom: 28px;
}

.card-green ul {
    padding-left: 42px;
    margin-bottom: 28px;
}

.card-green li {
    margin-bottom: 16px;
    font-size: 18px;
}

/* BENEFITS */

.benefits {
    background: #4b1687;
    color: #fff;
    padding: 135px 0 110px;
    position: relative;
    z-index: 1;
}

.benefits h3 {
    color: #b287fd;
    font-size: 28px;
    margin-bottom: 70px;
    text-align: center;
}

.benefits-subtitle {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #fff;
}

.benefits h4 {
    color: #b287fd;
    font-size: 26px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 24px;
    column-gap: 20px;
}

.benefit {
    text-align: center;
}

.benefit:nth-child(1) {
    grid-column: 1 / 3;
}

.benefit:nth-child(2) {
    grid-column: 3 / 5;
}

.benefit:nth-child(3) {
    grid-column: 5 / 7;
}

.benefit:nth-child(4) {
    grid-column: 2 / 4;
}

.benefit:nth-child(5) {
    grid-column: 4 / 6;
}

.benefit img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.benefit p {
    max-width: 320px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}

/* RATE CALLOUT */

.rate-callout {
    background: #b287fd;
    border-radius: 38px 38px 0 38px;
    padding: 70px 100px;
    margin: 75px auto 45px;
    display: flex;
    align-items: center;
    gap: 90px;
    max-width: 1200px;
}

.rate-callout img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.rate-callout p {
    color: #fff;
    font-size: 34px;
    line-height: 1.2;
    text-transform: uppercase;
}

.provider-note {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    text-transform: uppercase;
    max-width: 1000px;
    margin: 0 auto 0;
}

/* CTA */

.cta-section {
    position: relative;
    z-index: 2;
}

.cta {
    background: #00c853;
    padding: 100px 100px 150px;
    border-radius: 38px;
    margin-top: -70px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.cta h3 {
    max-width: 950px;
    font-size: 38px;
    color: #004d3f;
    margin-bottom: 65px;
}

.cta .email {
    font-size: 24px;
    font-weight: 700;
    color: #004d3f;
    margin-bottom: 70px;
}

.cta .agent-note {
    font-size: 18px;
    color: #004d3f;
}

/* MOBILE */

@media (max-width: 768px) {
    .container {
        width: 88%;
    }

    .hero {
        height: 430px;
    }

    .logo {
        width: 220px;
    }

    .intro {
        padding: 55px 0 70px;
    }

    .intro h1 {
        font-size: 34px;
        margin-bottom: 42px;
    }

    .intro h2 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    p,
    li {
        font-size: 17px;
    }

    .card-green {
        padding: 34px 26px 45px;
        border-radius: 26px;
        margin-bottom: -45px;
    }

    .image-row {
       flex-direction: column;
    gap: 18px;
    }

    .image-row img {
        width: 100%;
    height: auto;
    object-fit: contain;
    }

    .card-green h3 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .card-green li {
        font-size: 17px;
    }

    .benefits {
        padding: 120px 0 90px;
    }

    .benefits h3 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .benefits-subtitle {
        font-size: 18px;
        margin-bottom: 55px;
    }

    .benefits h4 {
        font-size: 20px;
        margin-bottom: 55px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .benefit:nth-child(1),
    .benefit:nth-child(2),
    .benefit:nth-child(3),
    .benefit:nth-child(4),
    .benefit:nth-child(5) {
        grid-column: auto;
    }

    .benefit img {
        width: 120px;
        height: 120px;
        margin-bottom: 25px;
    }

    .benefit p {
        font-size: 20px;
    }

    .rate-callout {
        padding: 35px 28px;
        margin: 80px auto 55px;
        flex-direction: column;
        gap: 25px;
        border-radius: 26px 26px 0 26px;
    }

    .rate-callout img {
        width: 130px;
        height: 130px;
    }

    .rate-callout p {
        font-size: 28px;
        text-align: center;
    }

    .provider-note {
        font-size: 20px;
    }

    .cta {
        padding: 45px 30px 80px;
        margin-top: -45px;
    }

    .cta h3 {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .cta .email {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .cta .agent-note {
        font-size: 9px;
    }
}