/*
Theme Name: Make Progress 3 Дочерняя тема
Theme URI: https://goodwinpress.ru/wp-tema-make-progress-3
Author: Алексей Goodwin
Author URI: https://goodwinpress.ru/
Description: Используем дочернюю тему лишь в тех случаях, когда собрались менять разметку или функции темы.
Text Domain: make-progress-3
Domain Path: /languages
Template: make-progress-3
*/

/* Размещайте ваши стили под этой строкой. */ 

.price-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.price-category {
    margin-bottom: 40px;
}

.category-title {
    background-color: #3498db;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.price-table {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:nth-child(even) {
    background-color: #f9f9f9;
}

.service-info {
    flex: 1;
    padding-right: 20px;
}

.service-info h4 {
    margin-top: 0;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-description {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-duration, .service-includes {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.service-price {
    font-weight: bold;
    font-size: 18px;
    color: #e74c3c;
    display: flex;
    align-items: center;
    min-width: 120px;
    justify-content: flex-end;
}

.price-note {
    font-size: 14px;
    color: #777;
    margin-top: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.price-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c0392b;
}

@media (max-width: 768px) {
    .price-item {
        flex-direction: column;
    }
    
    .service-info {
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .service-price {
        justify-content: flex-start;
    }
}

.family-support-block {
    background-color: #f8f9fa; /* Светлый фон для выделения блока */
    padding: 40px 0;
    text-align: center;
    font-family: 'Arial', sans-serif; /* Замените на ваш шрифт */
}

.family-support-block .container {
    max-width: 900px; /* Ограничение ширины для лучшей читаемости */
    margin: 0 auto;
    padding: 0 20px;
}

.family-support-title {
    font-size: 28px;
    color: #333; /* Основной цвет заголовка */
    margin-bottom: 20px;
    font-weight: bold;
}

.family-support-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.family-support-subtitle {
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.family-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Для адаптивности на маленьких экранах */
    justify-content: space-around; /* Равномерное распределение элементов */
    text-align: left;
}

.family-support-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin: 10px;
    display: flex;
    align-items: flex-start; /* Выравнивание иконки и текста */
    width: calc(50% - 40px); /* Два элемента в ряду с отступами */
    box-sizing: border-box;
}

.support-item-icon {
    font-size: 28px; /* Размер иконки */
    color: #007bff; /* Цвет иконки, подберите под ваш стиль */
    margin-right: 20px;
    margin-top: 5px; /* Небольшой отступ сверху для лучшего выравнивания */
}

.support-item-content h4 {
    font-size: 18px;
    color: #333;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
}

.support-item-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.family-support-conclusion {
    font-size: 16px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 500;
}

.family-support-cta .cta-button {
    display: inline-block;
    background-color: #007bff; /* Цвет кнопки */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.family-support-cta .cta-button:hover {
    background-color: #0056b3; /* Цвет кнопки при наведении */
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .family-support-title {
        font-size: 24px;
    }
    .family-support-subtitle {
        font-size: 20px;
    }
    .family-support-item {
        width: 100%; /* Один элемент в ряду на маленьких экранах */
        margin-left: 0;
        margin-right: 0;
    }
}

