body {
    background-color: #ebf6fb;
}

h1, h2, p, span, a, button, body {
    font-family: 'Poppins';
    margin: 0;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* BUTTONS */

.primary-button {
    border-bottom: 4px solid #0a1538;
    background-color: #0e1f53;
    color: white;
    padding: 12px 20px 8px;
    border-radius: 12px;
    transition: opacity 0.2s linear;
    box-shadow: 0 0 0 4px #0e1f5326;
}

.primary-button:hover {
    opacity: 0.85;
}

/* GLOBAL */

.borders {
    border-right: 1px dashed #84c8e8;
    border-left: 1px dashed #84c8e8;
}

.horizontal-borders {
    border-top: 1px dashed #84c8e8;
    border-bottom: 1px dashed #84c8e8;
}

h2 {
    font-size: 32px;
    line-height: 46px;
    max-width: 620px;
    color: #0e1f53;
    margin-bottom: 8px;
}

.title-secondary {
    color: #0563c7;
}

p {
    max-width: 680px;
    color: #0e1f53;
    font-size: 18px;
}

.content-wrapper {
    padding: 96px 40px 96px;
    max-width: 1140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.small-tile {
    padding: 4px 12px;
    border: 1px dashed #dddddd;
    border-radius: 999px;
    background-color: #f4f4f4;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}

.small-content {
    padding: 40px;
    width: 100%;
}

/* NAV */

.nav {
    background-color: white;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #b5d1df;
    position: fixed;
    width: 100%;
    z-index: 2;
}

.nav .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    width: 100%;
    margin: 0 48px;
    padding: 12px 0;
}

.nav ul {
    list-style-type: none;
    display: flex;
    gap: 48px;
    margin: 0;
    padding: 0;
}

.nav ul a {
    color: #0a1538cc;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 12px;
}

.nav ul a:hover {
    background-color: #f6f4f0;
    color: #0a1538;
}

/* BANNER */

.banner {
    border-bottom: 1px dashed #84c8e8;
}

.banner .content-wrapper {
    padding: 96px 40px 96px;
}

.banner.top .content-wrapper {
    padding-top: 168px;
}

h1 {
    font-size: 42px;
    line-height: 56px;
    max-width: 620px;
    color: #0e1f53;
    margin-bottom: 24px;
}

.banner .description {
    margin-bottom: 24px;
    font-size: 15px;
}

.banner a {
    margin-bottom: 8px;
}

.banner .short-desc {
    font-size: 12px;
    font-weight: 500;
}

h1 span {
    color: #0563c7;
}

.customers {
    max-height: 42px;
}

.trust-section {
    display: flex;
    align-items: center;
}

.trust-section p {
    font-weight: 500;
    font-size: 12px;
    max-width: 160px;
    text-align: left;
}

.trust-stars {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 8px;
    gap: 4px;
}

.panel {
    width: 100%;
    margin-top: 40px;
}

/* HOW IT WORK */

.how-it-work {
    background-color: white;
}

/* DEMO */

.demo {
    background-color: #fafafa;
}

.video {
    background-color: #fafafa;
}

/* REVIEWS */

.reviews {
    background-color: #fdf2f8;
}

.reviews-wrapper {
    display: flex;
    gap: 16px;
    margin: 32px 0;
}

.review {
    background-color: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.reviews .small-tile {
    border-color: #faa7d1;
    background-color: #fce7f2;
}

.review .description {
    font-size: 14px;
    margin-bottom: 8px;
}

.review .customer {
    font-size: 16px;
}

.review .company {
    font-size: 12px;
}

.reviews .primary-button {
    border-color: #84173f;
    background-color: #84173f;
}

.review .stars {
    margin-bottom: 4px;
}


/* FAQ */

.faq-wrapper {
    background-color: #fafafa;
}

.faq-section {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.faq {
    border: 1px solid #e5e5e5;
    padding: 16px;
    border-radius: 16px;
    user-select: none;
    text-align: left;
}

.question {
    padding-right: 32px;
    position: relative;
}

.question::after {
    content: url('./down-arrow.svg');
    position: absolute;
    right: 8px;
    top: 8px;
    display: flex;
}

.open .question::after {
    transform: rotate(180deg);
}

.answer {
    display: none;
    font-size: 15px;
    width: 100%;
    border-top: 1px solid #e5e5e5;
    margin-top: 16px;
    padding-top: 8px;
}

.open .answer {
    display: block;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 24px;
        line-height: 32px;
        margin-top: 16px;
    }

    h2 {
        font-size: 20px;
        line-height: 24px;
    }

    p {
        font-size: 14px;
    }

    .banner .content-wrapper {
        padding: 40px 20px;
    }

    .banner.top .content-wrapper {
        padding-top: 116px;
    }

    .content-wrapper {
        padding: 40px 20px;
    }

    .faq-section {
        flex-direction: column;
    }

    .answer {
        font-size: 12px;
    }

    .question::after {
        top: 4px;
    }

    .reviews-wrapper {
        flex-direction: column;
    }

    .video iframe {
        width: 100%;
        height: 400px;
    }

    .content ul li:not(.logo) {
        display: none;
    }

    .nav .content {
        margin: 0 12px;
    }
}