.row{
    max-width: 1280px;
    margin: 24px auto 0;
}


@media (max-width: 1320px) {
    .row{
        padding-left: 18px;
        padding-right: 18px;
    }
}

body {
    /*background-color: #e9f8fe!important; */
    background-color: #d1e6fb!important
}

* {
    font-family: "Montserrat", sans-serif !important;
}


/* --- Основні змінні та налаштування --- */
:root {
    --accent-color: #d32f2f; /* Акцентний колір (червоний/синій) */
    --text-dark: #333;
    --bg-alt: #FFF0F5;       /* Твій колір з техзавдання */
    --transition: 0.3s ease;
}

/* --- Загальні стилі секцій та фонів --- */
.lp-section {
    padding: 60px 0 0 0;
}

@media (max-width: 768px) {
    .lp-section {
    padding: 24px 0 0 0;
}
}

.lp-section.alt-bg {
   /* background-color: var(--bg-alt); */
}

.lp-section.white-bg {
   /* background-color: #ffffff; */
}

/* --- Flexbox Сітка --- */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    /*align-items: center; */
}

.flex-row1{
    display: flex;
    gap: 36px;
    padding: 16px 24px;
    background: white;
    border-radius: 16px;
    align-items: center;
}

@media (max-width: 768px) {
    .flex-row1{
        flex-direction: column;
        gap: 16px;
    }
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
}

.hero-title{
    font-size: 42px;
    font-weight: 700;
}

@media (max-width: 768px) {
.hero-title{
    font-size: 28px;;
}
}

/* --- Типографіка та Кнопки --- */
h1, h2 {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

@media (max-width: 768px) {
h1, h2 {
 font-size: 36px;
}
}

.subtitle{
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: blue;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin-top: 16px;
}

.btn-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

/* --- Картки (Переваги, Послуги, Етапи) --- */
.feature-card, 
.service-card, 
.step-card {
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    box-sizing: border-box;
}

/* Логіка чергування кольорів карток відносно фону секції */
.alt-bg .feature-card, 
.alt-bg .service-card,
.alt-bg .step-card {
    background-color: #ffffff;
}

.white-bg .feature-card, 
.white-bg .service-card,
.white-bg .step-card {
    background-color: var(--bg-alt);
}

.feature-card:hover,
.service-card:hover {
    transform: translateY(-5px);
}

/* --- FAQ Акордеон --- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(0,0,0,0.02);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    color: #666;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 1000px; /* Достатньо для тексту */
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* --- Зображення --- */
img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* --- Адаптивність (Mobile) --- */
@media (max-width: 992px) {
    .col-3 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .lp-section {
        padding: 24px 0 0 0;
    }
    
    .col-6, .col-4, .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .flex-row {
        flex-direction: column;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
}




.feature-inner-flex{
    display: flex;
    gap: 16px;
    align-items: center;
}

.feature-subtite{
    font-size: 20px;
    font-weight: 700;
}

.feature-contet{
    margin-top: 16px;
}

.feature-inner-flex {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px; /* Відступ між іконкою та заголовком */
}

.feature-icon-wrapper {
    flex: 0 0 40px; /* Фіксована ширина контейнера іконки */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: block;
}