.guidor-stats-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 96px 64px;
}

.guidor-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.guidor-stats img {
    inset: -26px -16px auto auto;
    position: absolute;
    display: block;
}

.guidor-stats-section-title {
    font-family: "Outfit", sans-serif;
    word-break: break-word;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-5xl);
    letter-spacing: -0.96px;
    text-align: center;
    line-height: var(--line-height-normal);
    color: var(--color-secondary);
}

.stat-card {
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 32px;
    padding: 24px 32px;
    width: 342px;
    height: 141px;
}

.stat-card span {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-normal);
    color: var(--color-secondary);
}

.stat-card.blue {
    align-content: stretch;
    background: linear-gradient(0deg, rgba(99, 165, 181, 0.1), rgba(99, 165, 181, 0.1)), #FFFAFA;
    box-shadow: 0 6px 12px rgba(26, 31, 42, 0.05);
}

.stat-card.green {
    align-content: stretch;
    background: linear-gradient(0deg, rgba(99, 181, 104, 0.1), rgba(99, 181, 104, 0.1)), #FFFAFA;
    box-shadow: 0 6px 12px rgba(26, 31, 42, 0.05);
}

.stat-card.orange {
    align-content: stretch;
    background: linear-gradient(0deg, rgba(255, 184, 87, 0.1), rgba(255, 184, 87, 0.1)), #FFFAFA;
    box-shadow: 0 6px 12px rgba(26, 31, 42, 0.05);
}

.stat-card__title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
}

.stat-card__title.blue {
    color: #63A5B5;
}

.stat-card__title.green {
    color: #63B568;
}

.stat-card__title.green span {
    color: inherit;
}

.stat-card__title.orange {
    color: #FFB857;
}

@media (max-width: 768px) {
    .stat-card {
        width: 226px;
        height: 98px;
    }

    .guidor-stats-section-title {
        font-size: 28px;
    }

    .stat-card__title {
        font-size: var(--font-size-2xl);
    }

    .stat-card span {
        font-size: var(--font-size-base);
    }

    .guidor-stats img {
        inset: -16px -0.5% auto auto;
        width: 60px;
        height: 60px;
    }
}
