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

body {
    min-height: 100vh;
}

.top-contents {
    height: 100vh;
    width: 88vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top-contents h1 {
    margin: 16px;
    font-family: "montserrat";
    font-size: 1.7rem;
}

.top-contents h1>img {
    margin-bottom: -15px;
    height: 55px;
    width: 55px;
}

.top-contents h2 {
    font-family: "varta";
    font-size: 1.4rem;
}

.top-contents button {
    margin: 24px;
    padding: 6px;
    border-style: none;
    border-radius: 4px;
    background-color: #B2D2FF;
    font-family: "montserrat";
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s;
}

.top-contents button:hover {
    background-color: #87cefa;
}

.logos img {
    filter: grayscale(100%);
    margin: 61px 16px 16px 16px;
    height: 55px;
    width: 55px;
}

#sales-letter {
    background-color: #E8E8E8;
}

.letter-contents, .guarantee-contents, .faqs-contents, .final-cta-contents {
    position: relative;
    margin: 0 auto;
    padding-bottom: 100px;
    width: 88vw;
}

.letter-contents h4 {
    padding: 48px 0px 16px 0px;
    font-family: "varta";
    font-size: 1.4rem;
}

.letter-contents p, .guarantee-contents p, .faqs-contents p,
.final-cta-contents p {
    margin: 48px 0px;
    font-family: "varta";
    font-size: 1.4rem;
}

.letter-contents button, .guarantee-contents button,
.final-cta-contents button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    padding: 6px;
    border-style: none;
    border-radius: 4px;
    background-color: #B2D2FF;
    font-family: "montserrat";
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.4s;
}

.letter-contents button:hover, .guarantee-contents button:hover,
.final-cta-contents button:hover {
    background-color: #87cefa;
}

.guarantee-contents h2, .faqs-contents h2, .final-cta-contents h2 {
    margin-top: 64px;
    font-family: "montserrat";
    font-size: 1.4rem;
    text-align: center;
}

#faqs {
    background-color: #E8E8E8;
}

.faqs-contents {
    padding-bottom: 64px;
}

.faqs-contents > button {
    font-size: 1.4rem;
}

.faqs-contents h2 {
    margin-top: 0;
    padding-top: 64px;
    padding-bottom: 48px;
}

.final-cta-contents {
    padding-bottom: 120px;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #ccc;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    font-family: "montserrat";
    font-weight: bold;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

/* Change icon when clicked */
.accordion:after {
    content: '\02795';
    float: right;
}

.active:after {
    content: "\2796";
}
/* End of accordion icon code */

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #b3b3b3;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: #f5f5f5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 1.4rem;
    text-align: left;
}

.footer-bar {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    align-items: center;
    background-color: black;
    font-family: "varta";
    font-size: 1rem;
    color: white;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

@media (min-width: 768px) {
    .top-contents, .letter-contents, .guarantee-contents, .faqs-contents,
    .final-cta-contents {
        width: 716px;
    }
    .top-contents h1 {
        font-size: 2.4rem;
    }
    .top-contents h2 {
        font-size: 1.7rem;
    }
    .guarantee-contents h2, .faqs-contents h2, .final-cta-contents h2 {
        font-size: 2rem;
    }
    .letter-contents p, .guarantee-contents p, .faqs-contents p,
    .final-cta-contents p {
        font-size: 1.7rem;
    }
    .footer-bar {
        flex-direction: row;
    }
}

@media (min-width: 1200px) {
    .top-contents, .letter-contents, .guarantee-contents, .faqs-contents,
    .final-cta-contents {
        width: 786px;
    }
    .top-contents h1 {
        font-size: 3rem;
    }
    .top-contents h2 {
        font-size: 2rem;
    }
    .guarantee-contents h2, .faqs-contents h2, .final-cta-contents h2 {
        font-size: 3rem;
    }
    .letter-contents p, .guarantee-contents p, .faqs-contents p,
    .final-cta-contents p {
        font-size: 2.2rem;
    }
    .faqs-contents > button {
        font-size: 2rem;
    }
}
