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

body {
    width: 100%;
    overflow-x: hidden;
}

body.poster {
    background-attachment: fixed;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-5 {
    top: 5px;
}

button {
    border: 0;
}

main {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
    padding: 0 20px;
}

.banner {
    position: relative;
    width: 100%;
    max-width: 1500px;
    height: 400px;
    margin: 0 auto;
    border-radius: 0.5rem;
    overflow: hidden;
    padding: 10px 0;
}

.banner-background {
    background-position: center center;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.banner-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    align-items: center;
}

.dark-strip {
    background-color: #002E3C;
    padding: 1rem 2rem;
    border-radius: 0 0 0.5rem 0.5rem;
    text-align: center;
    width: 100%;
}

.dark-strip p {
    color: #F28345;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0;
}

h1,
h2,
h3,
p,
ol,
li {
    text-align: left;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
}

h1,
h2,
h3 {
    color: #0e4657;
}

.faq-section {
    margin: 2rem auto;
    width: 100%;
}

.faq-item {
    margin-bottom: 0.2rem;
}

.faq-question {
    color: #0e4657;
    padding: 0.6rem;
    cursor: pointer;
    position: relative;
    margin: 0;
}

.faq-question::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    color: #000;
    padding: 1rem;
    background-color: #f5f5f5;
    margin-top: 0.5rem;
}

footer {
    margin-top: 10px;
    width: 100%;
}

@media (min-width: 1200px) {
    main {
        max-width: 1250px;
    }

    .banner {
        max-width: 1250px;
    }
}

@media (min-width: 991px) and (max-width: 1199px) {
    main {
        max-width: 1000px;
        padding: 0 15px;
    }

    .banner {
        max-width: 1000px;
        height: 350px;
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    main {
        max-width: 800px;
        padding: 0 15px;
    }

    .banner {
        max-width: 800px;
        height: 300px;
    }
}

@media (max-width: 767px) {
    body {
        width: 100%;
        overflow-x: hidden;
    }

    main {
        padding: 0 10px;
        max-width: 100%;
    }

    .banner {
        width: 100% !important;
        max-width: 100% !important;
        height: 250px;
        padding: 5px 0;
        margin: 0;
    }

    .banner-background {
        width: 100% !important;
    }

    .banner-content {
        width: 100% !important;
    }

    .dark-strip {
        padding: 0.5rem 1rem;
        width: 100% !important;
    }

    .faq-section {
        width: 100% !important;
        max-width: 100%;
    }

    .faq-question,
    .faq-answer {
        padding: 0.5rem;
        width: 100%;
    }

    h1,
    h2,
    h3,
    p,
    ol,
    li {
        width: 100% !important;
        max-width: 100%;
    }
}