.landing__page {
}

.landing__page .cooling {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-size: cover !important;
}

.cooling__video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cooling__video-bg iframe {
    width: 100vw;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.landing__page .cooling::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.landing__page .cooling__content {
    position: relative;
    z-index: 2;
    margin: 220px auto;
}

.landing__page .cooling__title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 80px;
}

.landing__page .cooling__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.landing__page .cooling__item {
    display: flex;
    align-items: center;
    gap: 67px;
}

.landing__page .cooling__item svg {
    filter: invert(1);
}

.landing__page .cooling__link {
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    text-decoration: none;
}

/* Адаптивність */
@media (max-width: 992px) {
    .landing__page .cooling__title {
        margin-bottom: 60px;
    }

    .landing__page .cooling__list {
        flex-direction: column;
        gap: 20px;
    }

    .landing__page .cooling__item::before {
        display: none;
    }

    .landing__page .cooling__link {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .landing__page .cooling {
        padding: 100px 0;
    }

    .landing__page .cooling__item {
        width: 100%;
        max-width: 230px;
        gap: 30px;
    }

    .landing__page .cooling__content {
        margin: auto;
    }

    .landing__page .cooling__title {
        font-size: 48px !important;
        margin-bottom: 40px;
        margin-top: 0 !important;
    }
}




/* Блок `station` */
.landing__page .station {
    position: relative; /* Додано для позиціонування оверлея */
    background-color: #3a3a3a;
    color: #fff;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

.landing__page .station::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Напівпрозорий чорний оверлей */
}

.landing__page .station__container {
    position: relative; /* Додано для розміщення контенту над оверлеєм */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.landing__page .station__image {
    width: 100%;
    max-width: 570px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.landing__page .station__image img {
    width: 100%;
    height: 430px;
    object-fit: contain;
}

.landing__page .station__content {
    flex: 1;
}

.landing__page .station__title {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 55px;
}

.landing__page .station__text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
}

.landing__page .station__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing__page .station__item {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    margin-bottom: 10px;
    margin-left: 0;
}

.landing__page .station__icon {
    color: #00c3ff;
    margin-right: 10px;
    font-weight: bold;
}


@media (max-width: 767px) {

    .landing__page .station {
        padding: 60px 15px;
    }

    .landing__page .station__container {
        flex-direction: column;
    }

    .landing__page .station__title {
        font-size: 34px;
        margin-top: 0;
        line-height: normal;
    }

    .landing__page .station__image img {
        height: auto;
    }
}





.landing__page .station-series {
    padding: 80px 0;
    background-color: #fff;
}

.landing__page .station-series__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.landing__page .station-series__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}


.landing__page .station-series__content {
    flex: 1;
    min-width: 300px;
}



.landing__page .station-series__title {
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 55px;
}

.landing__page .station-series__text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
}

.landing__page .station-series__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing__page .station-series__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 16px;
    margin-left: 0;
}

.landing__page .station-series__icon {
    color: #00c3ff;
    margin-right: 10px;
    font-weight: bold;
}

.landing__page .station-series__image {
    width: 100%;
    max-width: 570px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.landing__page .station-series__image img {
    width: 100%;
    height: 430px;
    object-fit: contain;
}


@media (max-width: 767px) {

    .landing__page .station-series {
        padding: 60px 15px;
    }

    .landing__page .station__container {
        flex-direction: column;
    }

    .landing__page .station-series__title {
        font-size: 34px;
        margin-top: 0;
        line-height: normal;
    }

    .landing__page .station-series__image img {
        height: auto;
    }

    .landing__page .station-series__block:last-child {
        flex-direction: column-reverse;
    }
}


.landing__page .advantages {
    padding: 0;
}

.landing__page .advantages__title--container {
    display: flex;
    height: 135px;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: url(/wp-content/themes/ralco/assets/images/landing/advantages__title.png);
    background-repeat: no-repeat;
    background-size: cover;
    /*background-position: center;*/
}

.landing__page .advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.landing__page .advantages__title {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
}

.landing__page .advantages__content {
    display: flex;
    gap: 30px;
    /*flex-wrap: wrap;*/
    align-items: stretch;
    margin-top: 80px;
    margin-bottom: 80px;
}

/* Список переваг */
.landing__page .advantages__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex-grow: 1;
}

/* Картка переваги */
.landing__page .advantages__card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.landing__page .advantages__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 60px;
}

.landing__page .advantages__text-content {
    flex-grow: 1;
}

.landing__page .advantages__card-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 15px;
}

.landing__page .advantages__card-text {
    font-size: 15px;
    color: #353535;
    line-height: 24px;
}

/* Промо-картка */
.landing__page .advantages__promo-card {
    color: #fff;
    padding: 94px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    min-width: 300px;
    max-width: 370px;
    box-sizing: border-box;
    position: relative;
}

.landing__page .advantages__promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.landing__page .advantages__promo-card-container {
    z-index: 1;
}

@media (max-width: 767px) {
    .landing__page .advantages__title--container {
        height: auto;
    }

    .landing__page .advantages__title {
        margin: 35px 0;
        line-height: 42px;
        font-size: 36px;
        padding: 0 15px;
    }

    .landing__page .advantages__list {
        grid-template-columns: 1fr;
    }

    .landing__page .advantages__content {
        flex-direction: column;
        align-items: center;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .landing__page .advantages__promo-card {
        max-width: 100%;
        padding: 40px 40px;
    }

    .landing__page .advantages__icon {
        max-width: 50px;
    }

    .landing__page .advantages__card-title {
        font-size: 30px;
        margin-top: 0;
    }

    .co2-info__icon-group {
        margin-bottom: 0 !important;
    }

    .co2-info__icon-group img {
        width: 50px;
    }

    .co2-info__title {
        font-size: 30px !important;
    }

    .co2-info__text {
        margin-bottom: 30px !important;
    }
}


.co2-info__header {
    margin-bottom: 20px;
}

.co2-info__icon-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}



.co2-info__title {
    font-size: 40px;
    font-weight: 400;
    position: relative;
    letter-spacing: -1px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.co2-info__title::after {
    content: "";
    position: absolute;
    border-bottom: 5px solid #ffffff;
    bottom: 0;
    width: 100%;
    left: 0;

}

.co2-info__text {
    font-size: 15px;
    margin-bottom: 65px;
    font-weight: 400;
    line-height: 24px;
}

.co2-info__button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #fff;
    color: #0d284a;
    text-decoration: none;
    font-weight: 400;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 15px;
    width: 100%;
    line-height: 15px;
}

.co2-info__button:hover {
    background-color: #f0f0f0;
}



.landing__page .warranty {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 120px 15px;
}

.landing__page .warranty:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Темний напівпрозорий оверлей */
    z-index: 1;
}

.landing__page .warranty__content {
    position: relative;
    z-index: 2;
}

.landing__page .warranty__subtitle {
    font-size: 15px;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.landing__page .warranty__title {
    font-size: 90px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -3.06px;

}

.landing__page .warranty__duration {
    font-size: 90px;
    font-weight: 400;
    color: #009DE0;
    line-height: 1.2;
    letter-spacing: -3.06px;
    margin-bottom: 0;
}


@media (max-width: 767px) {
    .landing__page .warranty__title {
        font-size: 36px;
    }

    .landing__page .warranty__duration {
        font-size: 48px;
    }

    .landing__page .warranty {
        padding: 90px 15px;
    }

}


.projects {
    padding: 60px 0;
    background-color: #f7f9fc;
    text-align: center;
}

.projects__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.projects__header {
    margin-bottom: 50px;
}

.projects__subtitle {
    font-size: 15px;
    line-height: 26px;
    color: #009DE0;
    margin-bottom: 20px;
}

.projects__title {
    font-size: 50px;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: -1.5px;
}

.projects__title span {
    color: #009DE0;
}

/* Слайдер */
.projects__slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.projects__slider .slick-slide {
    margin: 0 15px; /* по 15px слева и справа */
}

/* Чтобы не было лишнего пространства по бокам */
.projects__slider .slick-list {
    margin: 0;
}

@media (max-width: 1024px) {
    .projects__slider .slick-slide {
        margin: 0 10px;
    }
    .projects__slider .slick-list {
        margin: 0 -10px;
    }
}

@media (max-width: 767px) {

    .projects__container {
        width: inherit;
    }

    .projects__image {
        margin-bottom: 15px;
        max-height: 325px !important;
        min-height: 325px !important;
    }

    .projects__slider .slick-slide {
        margin: 0 5px;
    }
    .projects__slider .slick-list {
        margin: 0 -5px;
    }

    .projects__nav-button svg {
        width: auto !important;
    }

    .projects__card-title {
        margin-top: 0;

    }

    .projects__title {
        font-size: 36px;
        letter-spacing: normal;
        line-height: normal;
    }
}

.projects__slides-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none; /* Для Firefox */
    -ms-overflow-style: none; /* Для Internet Explorer/Edge */
    margin-bottom: 0 !important;
}

.projects__slides-wrapper::-webkit-scrollbar {
    display: none; /* Для Chrome, Safari, Opera */
}

.projects__slide {
    flex-shrink: 0;
    padding-bottom: 0;
    height: max-content !important;
}

.projects__image {
    width: 100%;
    object-fit: cover;
    margin-bottom: 30px;
    max-height: 395px;
    height: 100%;
    min-height: 395px;
}

.projects__card-title {
    font-size: 36px;
    font-weight: 400;
    color: #000000;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.projects__card-text {
    font-size: 15px;
    color: #353535;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    text-align: center;
}

/* Навігаційні кнопки */
.projects__nav-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s;
}

.projects__nav-button svg {
    width: 50px;
}

.projects__nav-button:hover {
    opacity: 0.7;
}

.projects__nav-button img {
    width: 20px;
    height: 20px;
}

/* Індикатори (крапки) */
.projects__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.projects__dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.projects__dot--active {
    background-color: #00b0ff; /* Світло-синій */
}

/* Адаптивність */
@media (max-width: 768px) {
    .projects__slides-wrapper {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
}


.history {
    padding: 80px 0 120px;
    color: #fff;
    text-align: center;
    position: relative;
}

.history:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.history__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 2;
    position: relative;
}

.history__subtitle {
    font-size: 15px;
    color: #009DE0;
    margin-bottom: 20px;
    line-height: 26px;
}

.history__title {
    font-size: 50px;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: -1.5px;
    margin-bottom: 50px;
}

.history__description {
    font-size: 15px;
    line-height: 24px;
    margin: 0 auto 80px;
    color: #FAFAFA;
}

.history__timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
    justify-content: center;
    align-items: center;
}

.history__item {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 25px;
}

.history__item svg {
    width: 50px;
    height: 50px;
}

.history__item svg path {
    stroke: #009DE0;
}

.history__item-content {
    text-align: left;
    width: 195px;
}

.history__year {
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 50px;
    letter-spacing: -1.3px;
}

.history__event {
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    margin-bottom: 0;
}


@media (max-width: 767px) {
    .history {
        padding: 60px 0;
    }

    .history__title {
        font-size: 36px;
        line-height: normal;
        letter-spacing: 0;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .history__description {
        margin: 0 auto 40px;
    }

    .history__year {
        margin-top: 0;
        font-size: 36px;
        line-height: normal;
    }

    .history__timeline {
        grid-template-columns: 1fr;
    }
}


.workflow {
    padding: 80px 0;
    background: url(/wp-content/themes/ralco/assets/images/landing/workflow.jpg);
    background-size: 70%;
    text-align: center;
    position: relative;
}

.workflow__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.workflow__subtitle {
    font-size: 15px;
    color: #009DE0;
    line-height: 26px;
    margin-bottom: 10px;
}

.workflow__title {
    font-size: 50px;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: -1.5px;
    margin-bottom: 50px;
}

.workflow__steps {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.workflow__step {
    flex-basis: 33.333%;
    text-align: center;
    background-color: #ffffff;
    padding: 30px 25px;
}

.workflow__step-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -1px;
    margin-bottom: 15px;
    text-align: left;
}

.workflow__step-text {
    font-size: 15px;
    line-height: 24px;
    color: #353535;
    text-align: left;
    margin-bottom: 0;
}


@media (max-width: 767px) {
    .workflow__steps {
        flex-direction: column;
        gap: 30px;
    }

    .workflow {
        padding: 60px 0;
    }

    .workflow__title {
        font-size: 36px;
        line-height: normal;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .workflow__step-title {
        margin-top: 0;
        font-size: 30px;
        line-height: normal;
    }
}


.showcase {
    padding: 80px 0;
    background-color: #FAFAFA;
    text-align: center;
}

.showcase__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase__header {
    margin-bottom: 40px;
}

.showcase__title {
    font-size: 50px;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.showcase__subtitle {
    font-size: 16px;
    margin: 0 auto;
    line-height: 24px;
}

/* Слайдер */
.showcase__slider {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative !important;
}

.showcase__slides-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.showcase__slides-wrapper::-webkit-scrollbar {
    display: none;
}

.showcase__slide {
    flex-shrink: 0;
    height: auto !important;
}

.showcase__slider .slick-slide {
    margin: 0 15px; /* по 15px слева и справа */
}

/* Чтобы не было лишнего пространства по бокам */
.showcase__slider .slick-list {
    margin: 0 -15px;
}

@media (max-width: 1024px) {
    .showcase__slider .slick-slide {
        margin: 0 10px;
    }
    .showcase__slider .slick-list {
        margin: 0 -10px;
    }
}

@media (max-width: 767px) {
    .showcase__slider .slick-slide {
        margin: 0;
    }
    .showcase__slider .slick-list {
        margin: 0;
    }

    .showcase {
        padding: 60px 0;
    }

    .showcase__title {
        margin-top: 0;
        font-size: 36px;
        line-height: normal;

    }

    .showcase__slider {
        margin-bottom: 0 !important;
    }

    .showcase__card-title {
        margin-top: 0;
        text-align: center !important;
    }

}

.showcase__image {
    width: 100%;
    object-fit: cover;
    margin-bottom: 30px;
    max-height: 438px;
    height: 100%;
}

.showcase__card-title {
    font-size: 36px;
    font-weight: 400;
    color: #000000;
    line-height: 40px;
    margin-bottom: 30px;
    letter-spacing: -1px;
    text-align: left;
}

.showcase__card-text {
    font-size: 15px;
    font-weight: 400;
    color: #353535;
    line-height: 24px;
    text-align: left;
}

/* Навігаційні кнопки */
.showcase__nav-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s;
}

.showcase__nav-button svg {
    width: 50px;
}

.showcase__nav-button:hover {
    opacity: 0.7;
}

.showcase__nav-button img {
    width: 20px;
    height: 20px;
}

/* Адаптивність */
@media (max-width: 768px) {
    .showcase__slides-wrapper {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
}

.team {
    padding: 80px 0 120px;
    background-color: #000000;
    color: #fff;
    text-align: center;
}

.team__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.team__subtitle {
    font-size: 15px;
    color: #009DE0;
    line-height: 26px;
    margin-bottom: 10px;
}

.team__title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.team__description {
    font-size: 15px;
    line-height: 24px;
    margin: 0 auto 30px;
    color: #BDBDBD;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team__member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team__photo {
    width: 300px;
    object-fit: cover;
    margin-bottom: 15px;
}

.team__name {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1px;
    font-weight: 400;
    margin-bottom: 15px;
}

.team__position {
    font-size: 15px;
    color: #FAFAFA;
    line-height: 22px;
    text-align: center;
    margin-bottom: 0;
}

/* Адаптивність */
/*@media (max-width: 768px) {*/
/*    .team__grid {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*    }*/
/*}*/


@media (max-width: 767px) {

    .team {
        padding: 60px 0;
    }

    .team__title {
        font-size: 36px;
    }

    .team__grid {
        grid-template-columns: 1fr;
    }

    .team__photo {
        margin-bottom: 0;
    }

    .team__name {
        margin-top: 30px;
        font-size: 36px;
    }
    }
}


.contact {
    padding: 60px 0;
    background-color: #ffffff; /* Білий фон */
}

.contact__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact__title {
    font-size: 36px;
    font-weight: 300;
    color: #0d284a; /* Темно-синій */
    margin-bottom: 40px;
    text-align: center;
}

.contact__content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact__info {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
}

.contact__group {
    margin-bottom: 20px;
}

.contact__subtitle {
    font-size: 24px;
    font-weight: 300;
    color: #0d284a;
    margin-bottom: 5px;
}

.contact__text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.contact__map {
    width: 100%;
    height: 300px; /* Висота карти */
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.contact__form-wrapper {
    flex-basis: 50%;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: 15px;
    background-color: #f7f9fc;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #0d284a;
    box-sizing: border-box;
}

.contact__textarea {
    min-height: 120px;
    resize: vertical;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: #999;
}

.contact__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #333; /* Темно-сірий фон кнопки */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact__button:hover {
    background-color: #555;
}

.contact__button-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    filter: invert(1); /* Робить іконку білою */
}

/* Адаптивність */
@media (max-width: 768px) {
    .contact__content {
        flex-direction: column;
    }
}