.calculate-section{
        padding: 10px 0;
        background: #75757550;
        padding-bottom: 50px;
        font-family: 'PT Sans';
    }

    .calculate-section .container{
        max-width: 1000px;
        margin: 0 auto;
    }

    .calculator {
        display: flex;
        background: url(/templates/concrete_bg.jpg) !important;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
    }

    .calculator-title {
        text-align: center;
        font-size: 2.5rem;
        margin: 20px auto;
        margin-bottom: 10px;
        font-weight: 700;
        width: 80%;
        border-bottom: solid;
        height: 70px;
    }

.calc-section {
    padding: 10px 0;
    background: #75757550;
    padding-bottom: 50px;
    font-family: 'Reforma';
}

.calc-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Контейнер калькулятора - копируем стили из .faq-list (фон, тени) */
.calc-box {
    background: url(/templates/concrete_bg.jpg) !important;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
}

/* Заголовок - копируем стили из .faq-title */
.calc-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 20px auto;
    margin-bottom: 30px; /* Немного увеличен отступ */
    font-weight: 700;
    width: 80%;
    border-bottom: solid;
    height: 70px;
}

/* Область контента калькулятора (для padding, как в .answer-content) */
.calc-content {
    width: 100%;
    max-width: 800px; 
    padding: 0 50px; 
    box-sizing: border-box;
}

/* Группа полей ввода */
.calc-input-group {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px; 
    justify-content: center;
    margin-bottom: 30px;
}

/* Поля ввода (select и input) - стилизация под общий дизайн */
.calc-field {
    flex: 1 1 300px; /* Адаптивная ширина */
    padding: 10px 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1.2rem; /* Размер шрифта, как в .answer-content */
    color: #555555;
    background-color: #f8f9fa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
    line-height: 1.2;
}

.calc-field:focus {
    /*border-color: #4a7c59;*/
    border-color: #555555;
    /*box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);*/
    /*box-shadow: 0 0 0 3px rgba(63, 63, 63, 0.438);*/
    /*border-color: #646464;*/
    outline: none;
}

/* Базовое состояние — стрелка вниз */
.calc-field#calc-home-type,
.calc-field#calc-locate {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
    transition: all 0.3s ease; /* Плавность для всего */
}
.calc-field.is-open {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") !important;
}

/* Группа действий (кнопка и результат) */
.calc-action-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Кнопка "Рассчитать" */
.calc-button {
    
    font-family: 'Reforma';
    background: #646464;
    color: white;
    font-size: 2rem;
    font-weight: solid;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    max-width:300px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
}


.calc-button:hover {
    color: #3a3a3a;
}

.calc-button:active {
    transform: translateY(1px);
}

/* Текст результата */
.calc-result-text {
    font-family: 'PT Sans';
    font-size: 1.7rem;
    font-weight: 600;
    color: #555555;
    text-align: center;
    margin: 0;
    padding: 10px 0;
}


@media (max-width: 768px) {
    .calc-content {
        padding: 0 20px; /* Меньше отступ по бокам */
    }
    
    .calc-title {
        font-size: 2rem;
        height: auto;
    }
    
    .calc-field {
        flex: 1 1 100%; /* Занимают всю ширину */
        font-size: 1.4rem;
        padding: 12px 15px;
    }
    
    .calc-field#calc-home-type,
    .calc-field#calc-locate {
        background-position: right 15px center;
        padding-right: 40px;
    }

    .calc-button {
        font-size: 1.6rem;
        padding: 12px 25px;
        max-width: 100%;
    }
    
    .calc-result-text {
        font-size: 1.5rem;
    }
    
    .calc-box {
        border-radius: 0px; /* Как и в FAQ */
    }
}