.container {
    width: 100%;
    text-align: center;
    margin-top: 60px;
    padding-bottom: 70px;
}

.cover-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60vh;
    background: var(--bg-dull);
    border-radius: 0 0 50px 50px;
    padding: 50px 0;
}

.cover-wrapper.small {
    min-height: 10vh;
    border-radius: 0;
    padding: 40px 0;
}

.cover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 80%;
}

.cover-subhead {
    font-size: 18px;
    font-family: var(--timer-font);
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary);
}

.cover-head {
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--head-font);
    font-weight: 800;
    color: var(--text);
}

.cover-text {
    font-size: 14px;
    width: 85%;
    margin: auto;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-dull);
}

.cover-wrapper.small .cover-text {
    margin-bottom: 0;
}

.cover-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cover-stat-item {
    width: 250px;
    text-align: center;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 20px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dull);
}

.cover-stat-item span {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--timer-font);
}

.cover-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.cover-action a {
    font-size: 16px;
    padding: 8px 30px;
    border-radius: 10px;
    color: white;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.cover-action a:hover {
    opacity: 0.6;
}

@media (max-width: 900px) {
    .cover-head {
        font-size: 30px;
    }
    .cover {
        width: 90%;
    }
    .cover-text {
        width: 100%;
    }

    .cover-stat-item {
        width: 27vw;
    }
}

@media (max-width: 650px) {
    .cover-subhead {
        font-size: 16px;
    }
    .cover-head {
        font-size: 22px;
    }
    .cover-text {
        font-size: 13px;
    }
    .cover-stat-item span {
        font-size: 20px;
    }
    .cover-stats {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .cover-stat-item {
        font-size: 12px;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .cover-wrapper {
        border-radius: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--shadow);
    }
    .cover-wrapper.small {
        background: var(--bg-dull);
        border-bottom: none;
    }
    .cover-stat-item {
        padding: 10px 0;
        background: var(--bg-dull);
    }
    .cover-subhead {
        font-size: 14px;
    }
    .cover-head {
        margin-bottom: 14px;
        font-size: 18px;
        line-height: 1.5;
    }
    .cover-text {
        font-size: 12px;
    }
    .cover-action a {
        font-size: 14px;
        padding: 8px 30px;
        width: 100%;
        text-align: center;
    }
}

.why-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 80px;
    margin: auto;
    padding: 30px 0;
}

.why-image img {
    width: 32vw;
}

.why-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.why-head {
    font-size: 28px;
    font-family: var(--head-font);
    margin-bottom: 10px;
    color: var(--primary);
}

.why-text {
    font-size: 15px;
    color: var(--text-dull);
    font-style: italic;
    margin-bottom: 15px;
}

.why-bullets {
    font-size: 15px;
    color: var(--text-dull);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.why-bullet span {
    font-weight: 600;
}

.why-bullet i {
    font-size: 20px;
    margin-right: 10px;
}

.why-strong {
    font-size: 14px;
    color: var(--text-dull);
}

.why-strong span {
    font-weight: 600;
}

.why-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 8px 20px;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.why-action-btn i {
    font-size: 20px;
}

.why-action-btn:hover {
    opacity: 0.8;
}

@media (max-width: 950px) {
    .why-section {
        gap: 0;
        width: 95%;
        padding: 40px 0;
    }
    .why-image {
        display: none;
    }
}

@media (max-width: 650px) {
    .why-section {
        width: 90%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .why-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .why-head {
        font-size: 20px;
        text-align: center;
    }
    .why-text {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .why-bullets {
        font-size: 13px;
        margin-bottom: 30px;
        width: 100%;
    }
    .why-strong {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .why-bullet {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .why-bullet i {
        font-size: 17px;
        margin-right: 5px;
    }
    .why-content {
        text-align: center;
    }
}

.facts-section {
    width: 100%;
    padding: 50px 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
    background: var(--bg-dull);
}

.facts-head {
    font-size: 28px;
    font-family: var(--head-font);
    color: var(--primary);
    margin-bottom: 20px;
}

.facts-bracket {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 80%;
}

.facts-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.facts-item {
    padding: 20px;
    border-radius: 15px;
    background: var(--bg);
    width: 100%;
    font-size: 14px;
    color: var(--text-dull);
    font-style: italic;
}

.facts-text {
    font-size: 14px;
    font-weight: 600;
}

.facts-text span {
    color: var(--primary);
}

@media (max-width: 850px) {
    .facts-bracket {
        width: 90%;
        gap: 10px;
    }
    .facts-row {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 550px) {
    .facts-head {
        margin-bottom: 0;
        font-size: 22px;
    }
    .facts-item {
        font-size: 13px;
        padding: 10px 15px;
    }
    .facts-text {
        font-size: 13px;
    }
}

.services-section {
    width: 100%;
    padding: 50px 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}

.services-head {
    font-size: 28px;
    font-family: var(--head-font);
    color: var(--primary);
    margin-bottom: 0px;
}

.services-bracket {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 80%;
}
.services-text {
    font-size: 15px;
    color: var(--text-dull);
    font-style: italic;
    margin-bottom: 15px;
}

.services-column {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex-direction: column;
}

.services-item {
    padding: 20px;
    border-radius: 15px;
    background: var(--bg-dull);
    width: 100%;
    font-size: 14px;
    color: var(--text-dull);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.services-item h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.services-item p {
    font-size: 14px;
    color: var(--text-dull);
    font-style: italic;
}

.services-item i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-number {
    position: absolute;
    left: 0;
    top: 0;
    padding: 8px 10px 8px 8px;
    border-radius: 0 0 20px 0;
    background: var(--primary);
    color: white;
    font-size: 14px;
    font-family: var(--number-font);
}

@media (max-width: 1100px) {
    .services-bracket {
        width: 90%;
    }
}

@media (max-width: 900px) {
    .services-bracket {
        flex-direction: column;
        gap: 10px;
    }
    .services-column {
        gap: 10px;
    }
}

@media (max-width: 550px) {
    .services-head {
        font-size: 22px;
        padding: 0px 8px;
    }
    .services-text {
        font-size: 14px;
    }
    .services-item h3 {
        font-size: 16px;
    }
    .services-item p {
        font-size: 13px;
    }
}
