/* Общие стили */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

/* Шапка */
.navbar {
    background-color: #2d682d; /* Зеленый цвет */
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    align-items: center;
    gap: 20px;
	justify-content: space-between;
    flex-wrap: wrap; /* Для адаптивности */
}

/* Логотип */
.logo img {
    height: 40px; /* Размер логотипа */
}

/* Меню */
.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    text-decoration: none;
    color: #fff; /* Белый цвет текста */
    font-size: 1em;
}

.menu ul li a:hover {
    text-decoration: underline; /* Эффект при наведении */
}

/* Кнопка */
.cta-button {
    text-decoration: none;
    color: #fff; /* Белый цвет текста */
    border: 2px solid #fff; /* Белая рамка */
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #fff; /* Белый фон */
    color: #2d682d; /* Зеленый текст */
}
@media (max-width: 768px) {
    .menu ul {
        flex-direction: column;
        gap: 10px;
    }

    .cta-button {
        margin-top: 10px;
    }
}
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: #fff; /* Белый фон */
}

.hero .container {
    gap: 20px;
}

.text-content {
    flex: 1;
}

.text-content h1 {
    font-size: 2.5em;
    margin: 0 0 20px;
    color: #000; /* Чёрный текст */
}

.text-content p {
    font-size: 1.1em;
    margin: 0 0 30px;
    color: #444; /* Тёмно-серый текст */
    line-height: 1.6;
}

.cta-button {
    text-decoration: none;
    background-color: #2d682d; /* Зеленый цвет */
    color: #fff; /* Белый текст */
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #244f24; /* Тёмно-зелёный при наведении */
}

/* Секция с изображением */
.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text-content {
        margin-bottom: 20px;
    }

    .image-content {
        margin-bottom: 20px;
    }
}

.about-section {
    position: relative;
    padding: 50px 0;
    background-color: #fff;
}

.container {
    position: relative;
}

.image-container {
    /* position: relative; */
}

.image-left {
    width: 33%;
    border-radius: 10px;
    position: absolute;
    top: 38px;
    left: 0;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-right {
    position: absolute;
    top: -53px;
    left: 0;
    z-index: 0;
    right: -361px;
    margin:  auto;
}

.text-container {
    position: relative;
    margin-top: 326px;
    background-color: #2d682d;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 65%;
    left: -32%;
}

.text-container h2 {
    margin-top: 0;
    font-size: 2em;
}

.text-container p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 10px 0 0;
}

@media (max-width: 768px) {
    .image-left, .image-right {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .text-container {
        margin-top: 0;
    }
}

/* Общие стили */
.products-section {
    padding: 50px 0;
    text-align: center;
    background-color: #fff; /* Белый фон */
}



.products-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #000; /* Чёрный цвет заголовка */
}

.products {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.product {
    background-color: #2d682d; /* Зеленый фон */
    color: #fff; /* Белый текст */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 200px;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.product:hover {
    transform: scale(1.05); /* Эффект увеличения */
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid #fff;
}

.product p {
    font-size: 1em;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .products {
        flex-direction: column;
        align-items: center;
    }

    .product {
        width: 100%;
        max-width: 300px;
    }
}

.form-section {
    padding: 50px 0;
    background-color: #fff;
}

.form-section .container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.image-container img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-container {
    flex: 1;
    background-color: #2d682d;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.form-container p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.6;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input {
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
}

form button {
    padding: 10px;
    background-color: #fff;
    color: #2d682d;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .image-container img {
        margin-bottom: 20px;
    }
}


/* Секция 'Почему работать с нами' */
.why-us {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.why-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us h2 {
    font-size: 2em;
    margin-bottom: 30px;
    line-height: 1.4;
}

.why-us h2 span {
    color: #2d682d; /* Зеленый цвет текста */
}

.content {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap; /* Для адаптивности */
}

.image-section {
    flex: 1;
}

.image-section img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    background-color: #2d682d; /* Зеленый фон */
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.info-item h3 {
    margin-top: 0;
    font-size: 1.2em;
}

.info-item p {
    font-size: 1em;
    margin: 10px 0 0;
    line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .image-section {
        order: 1; /* Картинка вниз на мобильных */
    }

    .info-section {
        order: 2;
    }
}


/* Секция сотрудничества */
.cooperation {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}



.cooperation h2 {
    font-size: 2em;
    color: #2d682d; /* Зеленый цвет заголовка */
    margin-bottom: 10px;
}

.cooperation h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Для адаптивности */
}

.step {
    flex: 1;
    min-width: 250px;
    background-color: #f9f9f9; /* Светло-серый фон */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    font-size: 1.5em;
    font-weight: bold;
    color: #2d682d; /* Зеленый цвет номера */
    margin-bottom: 15px;
}

.step p {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}

/* Адаптивность */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 20px;
    }
}
