:root {
    --font-heading: 'Limelight', cursive;
    --font-body: 'Libre Baskerville', serif;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: var(--font-body);
}

html, body {
    background-color: #FFFDF6; /* Вставте ваш колір тут */
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh; /* Гарантує, що фон заповнить всю висоту сторінки */
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Налаштування кольору та шрифту для навігації */
.navbar {
    background-color: #FFFBEE;
}

.nav-link {
    color: #212121 !important;
    font-family: 'Libre Baskerville', serif;
    padding: 10px 15px !important; /* Рівномірні відступи */
    transition: all 0.3s ease;
}

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: 5px;
        left: 50%;
        background-color: #212121;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        color: #461019 !important; /* Колір вашого футера */
        transform: translateY(-2px);
    }

        .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }

@media (max-width: 991px) {
    .navbar-collapse {
        background: #FDFBF7;
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        text-align: center;
        gap: 10px;
    }

    .btn {
        margin-top: 15px;
        display: block;
        width: 100%;
    }
}

.btn-outline-dark {
    color: #212121 !important;
    border-color: #212121;
    font-family: 'Libre Baskerville', serif;
}

    .btn-outline-dark:hover {
        background-color: #212121;
        color: #FFFBEE !important;
    }

.footer-custom {
    background-color: #461019;
    color: #FFFBEE;
    padding: 30px 20px;
    font-family: 'Libre Baskerville', serif;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* Середня колонка ширша */
    gap: 20px; /* Мінімальний відступ між колонками */
}

.f-title {
    font-family: 'Limelight', cursive;
    margin-bottom: 15px;
    font-size: clamp(14px, 1.4vw, 28px);
}

.f-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .f-list li {
        margin-bottom: 5px;
        cursor: pointer;
    }
/* Компактний список */

p {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

hr {
    border: 0;
    border-top: 1px solid #FFFBEE;
    opacity: 0.3;
    margin: 20px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
}

.view-services-link {
    display: inline-flex;
    align-items: center;
    color: #FFFBEE;
    text-decoration: none;
    border-bottom: 1px solid #FFFBEE;
    padding-bottom: 2px;
    font-family: 'Libre Baskerville', serif;
    transition: all 0.3s ease;
}

    .view-services-link .arrow {
        margin-left: 8px; /* Відступ від тексту */
        transition: transform 0.3s ease; /* Плавний рух тільки для стрілки */
    }

    /* Ефект наведення на все посилання */
    .view-services-link:hover {
        color: #ffffff;
        border-bottom: 1px solid #ffffff;
    }

        /* Анімація стрілки при наведенні на посилання */
        .view-services-link:hover .arrow {
            transform: translateX(5px); /* Стрілка від'їжджає вправо */
        }

/* Секція статистики */
.stats-section {
    padding: 80px 0;
    background-color: #FDFBF7; /* Світлий фон як на макеті */
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-title {
    font-family: 'Limelight', cursive;
    color: #212121;
}

.stats-subtitle {
    font-family: 'Libre Baskerville', serif;
    max-width: 750px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Картки з жовтою тінню */
.stat-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 4px; /* Більш гострі кути як на скріншоті */
    height: 100%;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    /* Жовта тінь */
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
    }

.stat-number {
    font-family: 'Limelight', cursive;
    color: #D4AF37; /* Золотий колір цифр */
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-description {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #212121;
    margin-bottom: 0;
}

.divider {
    width: 100%;
    height: 50px;
    background-color: #FFF0BC80;
    display: flex;
    justify-content: center; /* Горизонтально */
    align-items: center;
}

.services-section {
    padding: 80px 0;
    background-color: #FDFBF7;
}

.services-main-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-main-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Легка тінь */
    transition: transform 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.service-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1; /* Вирівнює кнопки по нижньому краю */
}

/* Кнопка-пігулка */
.btn-gold-pill {
    background-color: #D4AF37;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

    .btn-gold-pill:hover {
        background-color: #b8972f;
        color: #fff;
    }

.benefits-section {
    padding: 100px 0;
    background-color: #FDFBF7;
    font-family: 'Libre Baskerville', serif;
}

.benefits-main-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefits-main-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefit-block {
    margin-bottom: 45px;
}

.benefit-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

    .benefit-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
        font-size: 1rem;
    }

        /* Стилізація булітів (крапок) */
        .benefit-list li::before {
            content: "\2022";
            position: absolute;
            left: 0;
            color: #212121;
            font-weight: bold;
        }

.cta-text {
    font-weight: 700;
    font-size: 1.3rem;
}

/* Використовуємо вже створений раніше стиль для золотої кнопки */
.btn-gold-pill {
    background-color: #D4AF37;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-gold-pill:hover {
        background-color: #b8972f;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

.work-process-section {
    padding: 100px 0;
    background-color: #FDFBF7;
    position: relative;
    overflow: hidden;
}

.process-main-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 2.2rem;
}

.process-main-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #555;
}

/* Контейнер для лінії */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.process-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 2;
    text-align: center;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15) !important;
    width: 380px;
}

.process-icon {
    width: 60px;
    margin-bottom: 20px;
}

.process-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.process-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 0;
}

/* Крапки на лінії */
.process-dot {
    width: 22px;
    height: 22px;
    background-color: #ffffff00;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .process-card {
        padding: 15px;
        width: 100% !important;
    }
}

.step-column {
    display: flex;
    flex-direction: column;
    align-items: center; /* Центруємо точку і картку */
    position: relative;
}

.zig-zag-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Щоб лінія не заважала клікати */
}

.process-steps-wrapper {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    max-width: 900px; /* Установите значение, которое вам нравится */
    margin: 0 auto;
}

.step-item {
    display: flex;
    width: 100%;
}

.align-left {
    justify-content: flex-start;
}

.align-right {
    justify-content: flex-end;
}

.step-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px; /* Задаємо фіксовану ширину карток */
}

.process-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Адаптив: на мобільних все стає по центру */
@media (max-width: 768px) {
    .step-column {
        width: 100%;
    }

    .align-left, .align-right {
        justify-content: center;
    }
}

.cta-coffee-section {
    background-color: #d7c9bd;
    padding: 60px 20px; /* Добавили отступы для текста */
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.coffee-cup-image {
    position: absolute;
    top: 80%;
    right: -100px; /* Сдвигаем вправо так, чтобы часть ушла за экран */
    transform: translateY(-50%);
    width: 600px; /* Размер чашки */
    z-index: 1;
    pointer-events: none; /* Чтобы нельзя было кликнуть по картинке */
}

/* На мобильных чашку лучше скрыть или уменьшить */
@media (max-width: 991px) {
    .cta-coffee-section {
        overflow: visible; /* Чтобы ничего не обрезалось лишнего */
        padding: 50px 15px;
    }

    .coffee-cup-image {
        display: none; /* Полностью убираем чашку на мобильных */
    }

    /* Текст должен быть по центру на мобилке */
    .row {
        justify-content: center;
        text-align: center;
    }
}

/* Стили заголовка и кнопки */
.cta-title {
    font-size: 2.8rem;
    color: #4a3728;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #5e4b3d;
/*    max-width: 500px;*/
}

.btn-coffee-pill {
    background-color: #7d4f4f;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-coffee-pill:hover {
        background-color: #5c3a3a; /* Стає трохи темнішою/насиченішою */
        color: #ffffff;
        transform: translateY(-3px); /* Кнопка трохи піднімається */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* З'являється м'яка тінь */
    }

.marketing-consulting-section {
    background-color: #fcfbf9;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.section-audit {
    color: #8b0000;
}
/* Темно-червоний для "Not sure..." */

.service-highlight-box {
    padding: 40px;
    background: #fff;
    border-radius: 15px;
}

.service-pill {
    background-color: #fceec4;
    display: block; /* Займає 100% ширини */
    width: 100%; /* Чітко вказуємо ширину */
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a3728;
    text-align: center; /* Центрує текст всередині плашки */
    box-sizing: border-box;
}

.list-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.checkmark-list {
    list-style: none;
    padding: 0;
}

    .checkmark-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .checkmark-list li::before {
            content: "\2713";
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background-color: #c4a962; /* Золотий кружечок */
            color: white;
            border-radius: 50%;
            margin-right: 12px;
            font-size: 10px;
            flex-shrink: 0;
        }

.btn-gold-pill {
    background-color: #c4a962;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-gold-pill:hover {
        background-color: #a38950;
        color: #fff;
    }

.process-section {
    background-color: #fcfbf9;
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: #ffe599; /* Жовтий колір з макету */
    color: #4a3728;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

.step-1 {
    margin-left: 0;
}

.step-2 {
    margin-left: 50px;
}

.step-3 {
    margin-left: 100px;
}

.step-4 {
    margin-left: 150px;
}

@media (max-width: 767px) {
    .step-1, .step-2, .step-3, .step-4 {
        margin-left: 0;
    }
}

.approach-card {
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease;
}

    .approach-card:hover {
        transform: scale(1.02); /* Легке збільшення при наведенні */
    }

    .approach-card h3 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .approach-card p {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

.metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 50px 0;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
}

    .metric-item img {
        width: 60px;
        margin-bottom: 15px;
    }

.metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Відстань між верхнім і нижнім рядом */
    margin: 50px 0;
}

.metrics-row {
    display: flex;
    justify-content: center;
    gap: 80px; /* Відстань між іконками всередині ряду */
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    text-align: center;
}

    .metric-item img {
        width: 65px;
        margin-bottom: 15px;
    }

    .metric-item span {
        font-weight: 600;
        color: #4a3728;
        line-height: 1.2;
    }

/* Адаптив для телефонів */
@media (max-width: 767px) {
    .metrics-grid {
        gap: 30px; /* Зменшуємо простір між іконками на телефоні */
    }

    .metrics-row {
        flex-direction: column; /* Перетворюємо ряд на колонку */
        gap: 30px; /* Відстань між іконками у вертикальному списку */
    }

    .metric-item {
        width: 100%; /* Дозволяємо іконкам займати доступну ширину */
    }
}

.cta-section {
    /* Фонове зображення */
    background-image: url('../images/hww_cta.jpg');
    /* Ключові властивості для заповнення */
    background-size: cover; /* Масштабує картинку, щоб вона повністю закрила блок */
    background-position: center; /* Центрує зображення */
    background-repeat: no-repeat;
    /* Забезпечуємо повну висоту та ширину */
    width: 100%; /* Ширина 100% */
    min-height: 400px; /* Або вкажіть вашу висоту, наприклад, 60vh */
    /* Радіус кутів для всієї секції */
    /* Вирівнювання вмісту всередині */
    display: flex;
    align-items: center; /* Центрує контент вертикально */
    justify-content: center; /* Центрує контент горизонтально */
    /* Відступи від країв */
    overflow: hidden; /* Щоб контент не виходив за заокруглені кути */
}

/* Переконайтеся, що контент не розтягує секцію більше ніж треба */
.cta-content {
    width: 100%;
    padding: 20px;
}

.cta-hww-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta-hww-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    color: #FFFFFF;
}

/* Кнопка */
.btn-book-consultation {
    background-color: #461019; /* Ваш бордовый цвет */
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
}

    .btn-book-consultation:hover {
        background-color: #6a202c;
        color: #ffffff;
    }

/* Адаптив: на мобильных чуть меньше отступы */
@media (max-width: 767px) {
    .cta-title {
        font-size: 1.8rem;
    }
}

.consulting-section {
    padding: 80px 0;
    text-align: center; /* ЭТОТ параметр центрирует весь текст внутри */
}

    .consulting-section .container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Центрирует элементы (кнопку и текст) по горизонтали */
    }

.section-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto; /* auto по бокам центрирует сам блок текста */
    color: #333;
    line-height: 1.6;
}

.divider h2 {
    margin: 0; /* Убирает лишние отступы, которые могут сдвигать заголовок */
    display: inline-block; /* Помогает, если нужно добавить линию по бокам */
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

    .pricing-card h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

.plan-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    min-height: 200px; /* Вирівнює висоту списків */
}

    .plan-features li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 20px;
    }

        .plan-features li::before {
            content: "\2022";
            position: absolute;
            left: 0;
        }

.price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-sign-up {
    background-color: #4a1c24; /* Темно-бордовий колір */
    color: #fff;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

    .btn-sign-up:hover {
        background-color: #2e1216;
        color: #fff;
    }

.steps-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.step-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); /* Золотистая тень */
    height: 100%;
}

.step-header {
    display: flex;
    align-items: center; /* Центрирует цифру и заголовок по вертикали */
    gap: 15px;
    margin-bottom: 15px;
}

.step-num {
    background: #fff0bc;
    color: #8b5a2b;
    padding: 5px 10px;
    border-radius: 50px;
    font-weight: bold;
}

.step-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

/* Блок What Affects the Cost */
.cost-box {
    background: transparent;
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
}

.cost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.proposal-section{
    padding: 40px 0;
}

.faq-parallax {
    /* Подключаем ваше изображение */
    background-image: url('../images/faq_hero.jpg');
    /* Ключевые параметры для эффекта "замороженного" фона */
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Высота секции */
    min-height: 400px;
    /* Вертикальное центрирование заголовка */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Затемнение для читабельности текста (если нужно) */
    position: relative;
    color: white;
}

    /* Добавляем легкое затемнение поверх картинки, если белый текст плохо виден */
    .faq-parallax::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }

    .faq-parallax .container {
        position: relative;
        z-index: 1; /* Текст выше затемнения */
    }

.accordion-item {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-radius: 15px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: #fff !important;
    font-weight: 600;
    color: #333;
    padding: 20px 30px;
    border-radius: 15px !important;
}

    .accordion-button:not(.collapsed) {
        background-color: #fffdf5 !important; /* Цвет открытого элемента */
        color: #8b5a2b;
        box-shadow: none;
    }

    .accordion-button::after {
        /* Это тот самый "плюсик". Можно заменить на свой иконку через background-image */
        filter: invert(0.5);
    }

/* Основной контейнер для каждого вопроса */
.accordion-item {
    background-color: #ffffff; /* Белый фон */
    border: none; /* Убираем стандартную рамку */
    border-radius: 15px !important; /* Скругление */
    margin-bottom: 12px; /* Отступ между вопросами */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Легкая тень */
}

/* Кнопка вопроса */
.accordion-button {
    background-color: #ffffff !important;
    border-radius: 15px !important;
    padding: 20px 30px;
    font-weight: 600;
    color: #333;
}

    /* Состояние при открытии */
    .accordion-button:not(.collapsed) {
        background-color: #fffdf5 !important; /* Тот самый светло-желтый оттенок */
        color: #8b5a2b; /* Цвет текста при открытии */
        box-shadow: none;
    }

/* Блок с ответом */
.accordion-body {
    background-color: #fffdf5; /* Фон ответа такой же, как у открытого заголовка */
    padding: 0 30px 20px 30px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.contact-cta-section {
    background-color: #ffffff; /* Или ваш фоновый цвет */
}

.cta-box {
    background-color: #FFF9E5; /* Мягкий кремовый фон, как на макете */
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.btn-contact {
    background-color: #3d1419; /* Ваш фирменный бордовый */
    color: #ffffff;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-block;
}

    .btn-contact:hover {
        background-color: #2a0e12;
        color: #ffffff;
    }

.contact-parallax {
    /* Подключаем ваше изображение */
    background-image: url('../images/contact_hero.jpg');
    /* Ключевые параметры для эффекта "замороженного" фона */
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Высота секции */
    min-height: 400px;
    /* Вертикальное центрирование заголовка */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Затемнение для читабельности текста (если нужно) */
    position: relative;
    color: white;
}

    /* Добавляем легкое затемнение поверх картинки, если белый текст плохо виден */
    .contact-parallax::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }

    .contact-parallax .container {
        position: relative;
        z-index: 1; /* Текст выше затемнения */
    }

/* Контейнер формы и карточка деталей */
.custom-input {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 12px;
    border-radius: 10px;
    transition: border-color 0.3s;
}

    .custom-input:focus {
        border-color: #8b2b3a; /* Бордовый при фокусе */
        box-shadow: 0 0 0 0.2rem rgba(139, 43, 58, 0.15);
    }

.contact-details-card {
    background-color: #fffdf5; /* Светло-желтый фон для деталей */
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0e6cc;
}

/* Кнопка отправки */
.btn-send-message-premium {
    background-color: #461019; /* Бордовый цвет */
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-send-message-premium:hover {
        background-color: #6a202c;
    }

/* Иконки и список */
.icon-blue {
    color: #8b2b3a; /* Замена синего на бордовый */
    font-size: 1.2rem;
}

.details-list {
    list-style: none;
    padding: 0;
}

    .details-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

.contact-title {
    color: #2d2d2d;
    font-weight: 700;
}

.working-hours {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.blog-parallax {
    /* Подключаем ваше изображение */
    background-image: url('../images/blog_hero.jpg');
    /* Ключевые параметры для эффекта "замороженного" фона */
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Высота секции */
    min-height: 400px;
    /* Вертикальное центрирование заголовка */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Затемнение для читабельности текста (если нужно) */
    position: relative;
    color: white;
}

    /* Добавляем легкое затемнение поверх картинки, если белый текст плохо виден */
    .blog-parallax::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }

    .blog-parallax .container {
        position: relative;
        z-index: 1; /* Текст выше затемнения */
    }

.insights-section {
    padding: 80px 0;
    background-color: #ffffff; /* Или ваш фоновый цвет */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.blog-card {
    background: #fff;
    border-radius: 25px; /* Сильное скругление, как на макете */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    height: 100%;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

    .blog-card:hover {
        transform: translateY(-10px);
    }

    .blog-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.blog-content {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    .blog-content h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
        color: #2d2d2d;
    }

    .blog-content p {
        font-size: 0.95rem;
        color: #666;
        margin-bottom: 20px;
    }

.btn-read-more {
    background-color: #c4a962; /* Золотистый цвет кнопки */
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
    margin-top: auto;
}

    .btn-read-more:hover {
        background-color: #e6c200;
    }

.cta-card {
    /* Градиентный фон от светлого к нежно-розоватому */
    background: #FFF9E5;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.btn-consultation {
    background-color: #3d1419; /* Темно-бордовый цвет кнопки */
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .btn-consultation:hover {
        background-color: #2a0e12;
        color: #ffffff;
    }

.blog-post {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

    .blog-post h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #2d2d2d;
        margin-bottom: 25px;
        margin-top: 40px; /* Отступ сверху для новых разделов */
        line-height: 1.3;
    }

    .blog-post p {
        margin-bottom: 20px;
        color: #555;
        text-align: justify; /* Делает текст аккуратным "кирпичиком" */
    }

    /* Стилизация цитат внутри поста, если они будут */
    .blog-post blockquote {
        border-left: 4px solid #8b2b3a; /* Ваш бордовый цвет */
        padding-left: 20px;
        font-style: italic;
        color: #444;
        margin: 30px 0;
    }

    /* Стилизация списков внутри поста */
    .blog-post ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

        .blog-post ul li {
            margin-bottom: 10px;
        }

/* Модальное окно */
.custom-modal-content {
    border-radius: 25px !important;
    border: none;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Инпуты */
.custom-input {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 14px;
    transition: 0.3s;
}

    .custom-input:focus {
        border-color: #8b2b3a; /* Ваш бордовый */
        box-shadow: 0 0 0 0.2rem rgba(139, 43, 58, 0.1);
    }

/* Кнопка отправки */
.btn-send-message-premium {
    background-color: #3d1419; /* Ваш бордовый */
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center; /* Вертикальное выравнивание */
    justify-content: center; /* Горизонтальное выравнивание */
    position: relative;
}

    .btn-send-message-premium:hover {
        background-color: #2a0e12;
    }

/* Кнопка открытия (та, что была на картинке) */
.btn-consultation {
    background-color: #6c757d; /* Серый как на картинке */
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    transition: 0.3s;
}

    .btn-consultation:hover {
        background-color: #5a6268;
    }

.dates-content {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

/* Общий контейнер для всех юридических текстов */
.policy-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    line-height: 1.8;
    color: #444;
}

    /* Заголовки H2 (Названия разделов) */
    .policy-content h2 {
        color: #3d1419; /* Ваш фирменный бордовый */
        font-weight: 700;
        margin-top: 40px;
        margin-bottom: 20px;
        font-size: 1.75rem;
    }

    /* Основной текст */
    .policy-content p {
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    /* Списки */
    .policy-content ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

        .policy-content ul li {
            margin-bottom: 10px;
        }

    /* Выделение жирным */
    .policy-content strong {
        color: #222;
    }

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Расстояние между элементами */
    max-width: 400px;
    margin: 0 auto;
}

.metric-list-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-left: 3px solid #3d1419; /* Ваш фирменный бордовый акцент */
    background: #FFFBEE;
    transition: 0.2s;
}

    .metric-list-item:hover {
        background: #f5f5f5;
        padding-left: 25px; /* Легкое движение при наведении */
    }

    .metric-list-item img {
        width: 48px;
        height: 48px;
        margin-right: 15px;
    }

    .metric-list-item span {
        font-weight: 500;
        color: #2d2d2d;
    }