
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

p {
    font-family: Montserrat;
    text-align: left;
    font-size: 16px;
    line-height: 1.4;
    color: #686868;
}


h3 {
    font-family: Montserrat;
    text-align: left;
}
.navigation {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.navigation {
    grid-auto-flow: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.navigation a {
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    font-family: Montserrat;
    color: black;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    flex-grow: 1;
    min-width: max-content;
    font-size: .875rem;
}
.navigation a:hover {
    color: #e5004b;
    /* Колір при наведенні */
}

.navigation a::after {
    content: '';
    /* Створює лінію під текстом */
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #e5004b;
    /* Колір активної лінії */
    transition: width 0.3s ease-in-out;
}

.navigation a.active::after {
    width: 100%;
    /* Розтягує лінію під активною вкладкою */
}

.navigation a.active {
    color: #e5004b;
    /* Колір активного пункту */
    font-weight: bold;
}

.image-main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.image-main img {
    max-width: 1500px !important;
    height: auto;
}

.h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
}

.toggle-icon {
    font-size: 30px;
    font-weight: bold;
    pointer-events: none;
    /* Запобігає проблемам з кліком */
}

.hidden-text {
    display: none;
    margin-top: 10px;
}

.benefits-list {
    display: flex;
    margin-top: 25px;
}

.benefits-list img {
    max-width: 90%;
}

@media screen and (max-width: 414px) {

.navigation {
    display: flex;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    padding: 5px;
    }
}


@media screen and (max-width: 414px) {
    .navigation {
    display: grid;
    margin: auto;
    width: 500px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

        .navigation {
            display: flow;
            margin: auto;
            width: 400px;
            justify-content: center;
            padding: 20px;
        }

.navigation a {
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    font-family: Montserrat;
    color: black;
    text-align: left;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: left;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    flex-grow: 1;
    min-width: max-content;
    font-size: .755rem;
}

.h1 {
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 45px;
    letter-spacing: normal;
    text-align: left;
    color: #546264;
    margin-top: 10px;
    margin: 25px;
}

.benefits-list {
    display: grid;
    margin-top: 25px;
    gap: 10px;
}

.h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    margin: 25px;
}

.hidden-text {
    margin: 25px;
}
}



    

