/* Общие стили для блоков */
.delivery-care-block,
.payment-options-block,
.warranty-block,
.catalog-blog {
    margin-top: 80px;
    background: #fff;
}

h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

/* Стили для блока доставки */
.delivery-steps {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.delivery-step {
    display: grid;
    grid-template-columns: 60px 1fr 100px;
    gap: 20px;
    align-items: stretch;
    background-color: white;
    padding: 30px;
    margin-top: 20px;
    min-height: 160px;
    border: 1px solid #F3F3F3;
    box-sizing: border-box;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.step-number {
    font-weight: bold;
    color: #033870;
    font-size: 38px;
    margin-top: 7px;
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-description {
    color: #666;
    font-size: 14px;
}

.step-icon img {
    width: 100%;
    height: auto;
}

/* Стили для блока оплаты */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.option-icon svg path {
    fill: #033870;
}

.download-link {
    color: #033870;
    text-decoration: underline;
    margin-left: 10px;
}

/* Стили для блока гарантии */
.warranty-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 30px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 2px solid #033870;
    max-width: 1200px;
    margin: auto;
}

.warranty-icon svg path {
    fill: #033870;
}

.warranty-text p {
    margin: 0 0 10px;
    color: #333;
}

/* Стили для блока с цифрами */
.about-numbers-block {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0;
}

.about-numbers-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(3, 56, 112, 0.9);
}

.about-numbers-inner {
    position: relative;
    z-index: 1;
}

.about-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    color: #fff;
    text-align: center;
}

.number-item {
    padding: 20px;
}

.number-value {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
}

.number-label {
    font-size: 16px;
    line-height: 1.4;
}

.number-label sup {
    font-size: 10px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .delivery-step {
        grid-template-columns: 1fr;
    }
    
    .step-icon {
        display: none;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .warranty-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .delivery-care-block,
    .payment-options-block,
    .warranty-block,
    .catalog-blog {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .about-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .about-numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .about-numbers-block {
        padding: 40px 0;
    }
    
    .number-value {
        font-size: 36px;
    }
}
