.benefits-guarantee-section {
    padding: 20px 15px;
    background-color: #fff;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 30px;
}

.benefit-box {
    height: 74px !important;
    min-height: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0 15px;
    border-radius: 8px;
    text-align: left;
    gap: 12px;
}

.benefit-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    margin: 0;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #333;
}

.light-blue {
    background-color: rgb(204, 229, 255);
}

.dark-blue {
    background-color: rgb(153, 203, 255);
}

.cta-wrapper {
    margin-bottom: 40px;
}

@keyframes pulse-main-btn {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 25px rgba(74, 144, 226, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }
}

.main-cta-btn {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 18px;
    padding: 15px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: pulse-main-btn 2s infinite ease-in-out;
    backface-visibility: hidden;
}

.main-cta-btn:active {
    transform: scale(0.98);
}

.btn-arrow {
    margin-left: 5px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 12px;
    color: #555;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.guarantee-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.guarantee-img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.guarantee-title {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 10px 0;
    color: #000;
}

.guarantee-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #556;
    margin: 0;
    line-height: 1.4;
}

.guarantee-subtitle strong {
    font-weight: bolder;
    color: #4e81bb;
}

.highlight-blue {
    font-weight: normal;
    color: #4e81bb;
}

@media (max-width: 900px) {
    .benefit-box {
        flex-direction: row;
        text-align: left;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        height: 95px !important;
    }

    .benefit-icon img {
        margin-bottom: 0;
    }

    .benefit-text {
        font-size: 14px;
        font-weight: normal;
    }

    .trust-indicators {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 0;
        flex-wrap: nowrap;
    }

    .guarantee-img {
        width: 140px;
        height: 140px;
    }

    .guarantee-title {
        margin: 0;
    }

    .guarantee-subtitle {
        font-size: 18px;
    }
}