* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* Змінні */
:root {
    --primary-color: rgb(40, 53, 91);
    /* Deep Dark Blue */
    --secondary-color: #00a8e8;
    /* Resilient Green */
    --accent-color: #00a672;
    /* Bright Orange */
    --dark-gray: #2f3030;
    --light-gray: #f0f0f0;
    --font-family-heading: 'Montserrat', sans-serif;
    --font-family-body: 'Open Sans', sans-serif;
}

/* Загальні стилі */
body {
    font-family: var(--font-family-body);
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--light-gray);
}

/* Шапка */
header {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: #fff;
    text-align: center;
    padding: 3rem 1.25rem;
}

header h1 {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    margin-bottom: 0.625rem;
    font-weight: 700;
}

header p {
    font-size: 1rem;
}

/* Основний контент */
main {
    padding: 1.25rem;
    max-width: 75rem;
    margin: auto;
}

/* Вступ */
.intro {
    max-width: 850px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    text-align: center;
}

/* Секції */
.features,
.reviews,
.contact-info,
.options,
.how-it-works,
.benefits,
.self-pickup {
    margin-bottom: 50px;
    text-align: center;
}

.features h2,
.reviews h2,
.contact-info h2,
.options h2,
.how-it-works h2,
.benefits h2,
.self-pickup h2 {
    font-family: var(--font-family-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

/* Оновлені стилі для розділу "Чому ми доставляємо швидше за інших?" */
.features .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.features .card {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    flex: 1 1 calc(30% - 20px);
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.features .card-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

/* Центрування іконок */
.features .card i {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    display: block;
    text-align: center;
}

.features .card h3 {
    font-family: var(--font-family-heading);
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: center;
}

.features .card p {
    font-family: var(--font-family-body);
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.6;
    transition: color 0.3s ease;
    text-align: center;
}

.features .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Стилі для інших карток */
.options-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.option-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-card i {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.option-card h3 {
    font-family: var(--font-family-heading);
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 600;
}

.option-card p {
    font-family: var(--font-family-body);
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.6;
}

/* Псевдоелемент ::before для синього накладення */
.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(0, 168, 232, 0.2), transparent);
    transform: skewX(-45deg);
    transition: all 0.5s ease;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.option-card:hover::before {
    left: 100%;
}

/* Секція "Як це працює?" */
.how-it-works ol {
    list-style: none;
    counter-reset: step-counter;
    max-width: 800px;
    margin: 0 auto;
}

.how-it-works li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
    text-align: left;
}

.how-it-works li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works h3 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.how-it-works p {
    font-size: 1rem;
    color: #4a4a4a;
}

/* Секція "Переваги нашої доставки" */
.benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.benefits-list li {
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
    max-width: 250px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-list li i {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.benefits-list li h3 {
    font-family: var(--font-family-heading);
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 600;
}

.benefits-list li p {
    font-family: var(--font-family-body);
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.6;
}

.benefits-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Відгуки */
.reviews {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.review-card {
    background: #f9f9f9;
    margin: 20px auto;
    padding: 20px;
    border-left: 5px solid var(--accent-color);
    border-radius: 5px;
    max-width: 600px;
    text-align: left;
}

.review-card p {
    font-family: var(--font-family-body);
    font-weight: 400;
}

.review-card span {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: var(--dark-gray);
    font-weight: 700;
    font-family: var(--font-family-heading);
}

.review-card span i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Контактна інформація */
.contact-info {
    background: linear-gradient(135deg, var(--accent-color), #64abc6);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.contact-info h2 {
    font-family: var(--font-family-heading);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info a {
    color: #fff;
    text-decoration: underline;
}

.contact-info i {
    color: #fff;
    margin-right: 10px;
}


@media (max-width: 768px) {
    .contact-info {
        padding: 20px;
        text-align: left;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}
/* Висновок */
.conclusion h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-family: var(--font-family-heading);
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
/* Самовивіз */
.self-pickup p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

/* Адаптивність */
@media (max-width: 1200px) {
    .features .card {
        flex: 1 1 calc(45% - 20px);
    }
}

@media (max-width: 768px) {

    /* Зміна напрямку flex-контейнерів на колонку для всіх карткових секцій */
    .features .card-container,
    .options-cards,
    .benefits-list {
        flex-direction: column;
        align-items: center;
    }

    /* Встановлення карток на 100% ширини */
    .features .card,
    .benefits-list li,
    .option-card {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }

    /* Корекція відступів для секції "Як це працює?" */
    .how-it-works li {
        padding-left: 60px;
    }

    .how-it-works li::before {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        left: 0;
    }

    /* Додаткові стилі для покращення читабельності на мобільних пристроях */
    .features .card p,
    .option-card p,
    .benefits-list li p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .features .card i,
    .option-card i,
    .benefits-list li i {
        font-size: 2rem;
    }

    .features .card h3,
    .option-card h3,
    .benefits-list li h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    /* Налаштування для дуже малих екранів, за потреби */
}

/* Футер */
footer {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
}

footer a {
    font-family: var(--font-family-heading);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

footer a:hover {
    text-decoration: underline;
}

/* Плавне прокручування */
html {
    scroll-behavior: smooth;
}

/* Стилі для доступності */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px dashed var(--accent-color);
    outline-offset: 2px;
}

/* Анімації */
.features .card,
.option-card,
.benefits-list li,
.review-card,
.contact-info,
.how-it-works li {
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeInUp 0.6s forwards;
}

.features .card:nth-child(1),
.option-card:nth-child(1),
.benefits-list li:nth-child(1),
.how-it-works li:nth-child(1) {
    animation-delay: 0.2s;
}

.features .card:nth-child(2),
.option-card:nth-child(2),
.benefits-list li:nth-child(2),
.how-it-works li:nth-child(2) {
    animation-delay: 0.4s;
}

.features .card:nth-child(3),
.option-card:nth-child(3),
.benefits-list li:nth-child(3),
.how-it-works li:nth-child(3) {
    animation-delay: 0.6s;
}

.benefits-list li:nth-child(4),
.how-it-works li:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Атрибути доступності для іконок */
.fa-truck-fast,
.fa-handshake-angle,
.fa-warehouse,
.fa-house-user,
.fa-location-dot,
.fa-box-open,
.fa-bolt,
.fa-thumbs-up,
.fa-exchange-alt,
.fa-shield-alt,
.fa-comments,
.fa-user,
.fa-envelope,
.fa-phone {
    aria-hidden: true;
    focusable: false;
}
.col-12.ds-page-title.pb-3 {
    display: none !important;
}
