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

body {
    font-family: 'Poppins', sans-serif;
    color: #151515;
    background: #fff;
}

.hero {
    background: #5600D3 url(images/banner-1.webp) center / cover no-repeat;
    height: 498px;
    display: flex;
    align-items: center;
}

.hero-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-logo {
    display: block;
    width: 265px;
    height: auto;
    margin-bottom: 54px;
}

.hero-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 0.97;
    color: #fff;
    width: min(100%, clamp(360px, 42vw, 520px));
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 14px;
    line-height: 115%;
    letter-spacing: -0.14px;
    color: #fff;
    width: min(100%, clamp(300px, 36vw, 410px));
}

.content {
    background: #fff;
    padding: 20px 0 30px;
}

.content-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.content h1 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #151515;
    line-height: 32px;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
    color: #151515;
    line-height: 22px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.phone-title-extra-top-space {
    margin-top: 25px !important;
}

.phone-subtitle-extra-top-space {
    margin-top: 20px !important;
}

.content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #151515;
    margin-top: 20px;
    margin-bottom: 8px;
}

.content p {
    font-size: 14px;
    font-weight: 400;
    color: #151515;
    line-height: 22px;
    margin-bottom: 10px;
}

.content p:last-child {
    margin-bottom: 0;
}

.content ul {
    list-style: none;
    margin: 6px 0 10px 0;
    padding: 0;
}

.content ul li {
    font-size: 14px;
    color: #151515;
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
    margin-bottom: 1px;
}

.content ul li::before {
    content: '•';
    position: absolute;
    left: 2px;
    top: 0;
    color: #151515;
    font-size: 13px;
    line-height: 1.85;
}

.check-list {
    margin-top: 16px;
}

.tight-top {
    margin-top: -10px !important;
}

.tight-bottom {
    margin-bottom: 0 !important;
}

.check-item {
    margin-bottom: 14px;
}

.check-item-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}

.check-icon {
    color: #5600D3;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    top: 1px;
}

.check-item-title strong {
    font-size: 14px;
    font-weight: 700;
    color: #151515;
}

.check-item-desc {
    font-size: 14px;
    color: #151515;
    line-height: 1.65;
}

@media (max-width: 1030px) {
    .hero-inner {
        padding: 0 24px;
    }
    .content-inner {
        padding: 0 24px;
    }
}

@media (min-width: 701px) and (max-width: 1030px) {
    .hero-desc {
        max-width: 300px;
    }
}

@media (min-width: 701px) and (max-width: 1030px) {
    .hero {
        height: 300px;
    }
    .hero-inner {
        padding-left: 60px;
    }
}

@media (max-width: 700px) {
    .hero {
        background-image: url(images/banner-2.webp);
        background-position: 50% 40%;
        background-size: cover;
        height: 330px;
        align-items: flex-start;
    }

    .hero-inner {
        padding: 18px 18px 0;
        align-items: center;
        text-align: center;
    }

    .hero-logo {
        width: 140px;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 18px;
        margin-bottom: 0;
        line-height: 0.97;
        font-weight: 700;
    }

    .hero-desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .content {
        padding: 25px 0 25px;
    }

    .content-inner {
        padding: 0 16px;
    }

    .content h1 {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 22px;
    }

    .content h2 {
        font-size: 16px;
        margin-top: 12px;
        margin-bottom: 12px;
        line-height: 22px;
    }

    .content h3 {
        line-height: 22px;
        font-size: 14px;
        margin-top: 10px
    }

    .content p,
    .content ul li,
    .check-item-title strong,
    .check-item-desc {
        font-size: 13px;
    }

    .check-icon {
        font-size: 14px;
    }
}
