/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.5;
    background-image: url('zavod.jpg'); /* Фоновая картинка */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Зафиксированный фон */
}
/* Контейнер */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: rgba(229, 241, 255, 0.8); /* Полупрозрачный фон поверх изображения */
    padding: 30px;
}
/* Блок текст */
 .container1 {
	display: flex;
	align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 30px auto;
    padding: 30px;
    background: rgba(229, 241, 255, 0.95); /* Полупрозрачный фон поверх изображения */
        }

         h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #000;
	    text-align:center;	
	    flex: 0 0 100%;				
        }

        h3 {
            font-size: 20px;
            margin-top: 30px;
            color: #555; 
	    text-align:center;	
	    flex: 0 0 100%;			
        }

        p {
            margin: 10px 0;           
        }

        ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        li {
            margin-bottom: 10px;
	    text-align:left;
        }

        ol {
            padding-left: 20px;
        }

/* Текстовый блок */
.text-section {
    max-width: 50%;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.delivery-info {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    text-align: center;
}

.black-btn {
    background-color: #000;
    color: #fff;
}

.blue-btn {
    background-color: #0078ff;
    color: #fff;
}

/* Блок изображения */
.image-section {
    max-width: 45%;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #000;
}

p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

.service-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #fff;
    text-align: center;
}

.info-block {
    flex: 1 1 200px;
    max-width: 320px;
    margin: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    background: #fff;
}

.info-block1 {
    flex: 1 1 300px;
    max-width: 320px;
    margin: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    background: #fff2e9;
}

.info-block:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.icon img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    object-fit: contain;
}

/* Секция формы */
html {
    scroll-behavior: smooth;
}
.form-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 600px;
    text-align: left;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #000;
}

.form-section p {
    margin-bottom: 20px;
    color: #333;
}

.ajax-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.ajax-form input,
.ajax-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s ease;
}

.ajax-form input:focus,
.ajax-form textarea:focus {
    border-color: #0078ff;
}

.submit-btn {
    background-color: #0078ff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #005bb5;
    transform: scale(1.05);
}