/* rent-offer.css */
section.rent-offer {
    margin-top: calc(var(--spacing-unit) * 2.5);
    padding: calc(var(--spacing-unit) * 1.5);
    background-color: var(--light);
    border-radius: calc(var(--border-radius) * 2);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

section.rent-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

section.rent-offer h2,
section.rent-offer h3 {
    margin-bottom: calc(var(--spacing-unit) * 1);
    color: var(--primary);
}

section.rent-offer .lead {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

/* Список преимуществ */
section.rent-offer ul.advantages {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

section.rent-offer ul.advantages li {
    position: relative;
    padding-left: calc(var(--spacing-unit) * 1.5);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

section.rent-offer ul.advantages li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Таблица цен */
section.rent-offer .pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: calc(var(--spacing-unit) * 1) 0;
    background-color: var(--light);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

section.rent-offer .pricing-table th,
section.rent-offer .pricing-table td {
    border: 1px solid var(--border-color);
    padding: calc(var(--spacing-unit) * 0.75);
    text-align: left;
}

section.rent-offer .pricing-table th {
    background-color: var(--primary);
    color: var(--light-text);
    font-weight: 500;
}

section.rent-offer .pricing-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Блок контактов */
section.rent-offer .contact-callout {
    margin-top: calc(var(--spacing-unit) * 1.5);
    padding: calc(var(--spacing-unit) * 1);
    background-color: rgba(var(--success), 0.08);
    border-left: 4px solid var(--success);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: var(--text-color);
}

section.rent-offer .contact-callout p {
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

/* Адаптивность */
@media (max-width: 768px) {
    section.rent-offer {
        padding: var(--spacing-unit);
        margin-top: calc(var(--spacing-unit) * 1.5);
    }

    section.rent-offer .pricing-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    section.rent-offer ul.advantages li {
        font-size: 0.95rem;
    }

    section.rent-offer .pricing-table th,
    section.rent-offer .pricing-table td {
        padding: calc(var(--spacing-unit) * 0.5);
    }
}