/* Стили для карточек гарантий */
    .guarantees-page {
        max-width: 1000px;           /* чуть уже, чтобы карточки были крупнее */
        margin: 20px auto;
        padding: 20px;
    }
    .guarantees-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .guarantees-header .highlight {
        color: #e63946;
    }
    .guarantees-header p {
        font-size: 1.2rem;
        color: #4a5568;
    }
    /* Сетка карточек: 2 колонки, карточки крупнее */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }
    .guarantee-card {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        transition: transform 0.2s, box-shadow 0.2s;
        padding: 30px 25px;
        text-align: center;
        border: 1px solid #eef2f6;
    }
    .guarantee-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 36px rgba(0,0,0,0.12);
    }
    .guarantee-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    .guarantee-card h3 {
        font-size: 1.6rem;
        margin: 0 0 15px;
        color: #2c3e50;
    }
    .guarantee-term {
        font-size: 2rem;
        font-weight: bold;
        color: #e63946;
        margin: 20px 0;
    }
    .guarantee-card p {
        color: #4a5568;
        font-size: 1rem;
        line-height: 1.5;
    }
    .service-list {
        background: #fff;
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    }
    .two-columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 25px;
    }
    .two-columns li {
        margin-bottom: 8px;
        list-style: none;
        position: relative;
        padding-left: 24px;
        font-size: 1rem;
    }
    .two-columns li:before {
        content: "✓";
        color: #2c3e50;
        font-weight: bold;
        position: absolute;
        left: 0;
        top: 0;
    }
    .service-item {
        font-size: 1rem;
    }
    .service-term {
        float: right;
        color: #e63946;
        font-weight: bold;
    }
    .price-banner {
        margin-top: 40px;
        padding: 35px 25px;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border-radius: 48px;
        text-align: center;
    }
    .price-banner p {
        font-size: 1.6rem;
        margin: 0;
    }
    .price-phone {
        display: inline-block;
        background: #2c3e50;
        color: white;
        padding: 14px 36px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.3rem;
        margin-top: 18px;
        transition: 0.2s;
    }
    .price-phone:hover {
        background: #e63946;
    }

    /* Мобильные: одна колонка */
    @media (max-width: 700px) {
        .cards-grid {
            grid-template-columns: 1fr;
        }
        .two-columns {
            grid-template-columns: 1fr;
        }
        .guarantees-header h1 {
            font-size: 1.6rem;
        }
        .guarantee-card {
            padding: 20px;
        }
        .guarantee-card h3 {
            font-size: 1.4rem;
        }
        .guarantee-term {
            font-size: 1.6rem;
        }
    }