@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

/* Основные стили для хедера */
.header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 2px solid #ddd;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: 60px;
    width: 15vw;
    height: auto;
    margin-right: 10px;
}

.company-name {
    margin: 0;
    font-size: 24px;
    color: #000;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu li {
    display: inline-block;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #0020b1;
    font-size: 20px;
    transition: color 0.3s ease;
}

.menu a:hover, .social-icon:hover {
    color: #0056b3;
}

/* Стили для гамбургер-меню */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 30px;
    height: 4px;
    margin: 6px 0;
    background-color: #333;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Стили для баннера */
.banner {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('https://promsklo.kyiv.ua/images/image-1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content {
    background-color: rgba(211, 211, 211, 0.7);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    max-width: 900px;
    width: 95%;
}

.banner-content h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
}

.banner-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #052097;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.banner-button:hover {
    background-color: #0056b3;
}

/* Footer Styles */
.footer {
    background-color: #312d2d;
    border-top: 2px solid #ddd;
    padding: 30px 0;
    text-align: center;
    color: #000;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer .menu {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer .menu a {
    text-decoration: none;
    color: #dbdbdb;
    font-size: 16px;
    font-weight: 500;
}

.footer .social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer .social-icon {
    color: #797a7e;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    font-size: 14px;
    color: #666;
}

/* Стили для галереи */
.gallery {
    padding: 60px 0;
    background-color: #333030;
    text-align: center;
}

.gallery h2 {
    font-size: 32px;
    color: #c5b90a;
    margin-bottom: 40px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.gallery-item {
    width: 250px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(222, 226, 2, 0.753);
}

/* Стили для секции услуг */
.services {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.services .container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.services h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.services .services-container .service-item {
    width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services .services-container .service-item h3 {
    font-size: 24px;
    color: #052097;
    margin-bottom: 15px;
}

.services .services-container .service-item p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.service-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #052097;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.services .services-container .service-item:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-button:hover {
    background-color: #0056b3;
}

/* Стили для секции отзывов (слайдер) */
.reviews {
    padding: 60px 0;
    background-color: #fff;
}

.reviews .container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    display: block;
}

.reviews h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.reviews-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.reviews .reviews-slider .review-item {
    flex: 0 0 350px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}

.review-text {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.review-author {
    font-size: 14px;
    color: #052097;
    font-weight: 600;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #052097;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    opacity: 0.7;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background-color: #0056b3;
    opacity: 1;
}

/* Стили для кнопки "Наверх" */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #052097;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 18px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 0.7;
}

.scroll-top:hover {
    background-color: #0056b3;
    opacity: 1;
}

/* Стили для секции "Про нас" */
.about {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about .container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.about .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.about .col-left {
    flex: 0 0 35%;
    max-width: 35%;
}

.about-title {
    font-size: 32px;
    font-weight: 600;
    color: #052097;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.about .col-right {
    flex: 0 0 60%;
    max-width: 60%;
}

.features-list {
    list-style-position: outside;
    padding-left: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.features-list li {
    margin-bottom: 15px;
}

/* Стили для секции "Контакти" */
.contacts {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #e8ecef 100%); /* Лёгкий градиент */
    position: relative;
}

.contacts .container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.contacts-title {
    font-size: 32px;
    font-weight: 600;
    color: #052097;
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-in-out;
}

.contacts .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.contacts .col-left {
    flex: 0 0 40%;
    max-width: 40%;
}

.contact-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideUp 0.8s ease-in-out;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.contact-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: #052097;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.contact-item strong {
    color: #052097;
}

.contact-item a {
    color: #052097;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0056b3;
}

.contacts .col-right {
    flex: 0 0 55%;
    max-width: 55%;
}

.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-in-out;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Стили для секции "Послуги" */
.services {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.services .container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.services-title {
    font-size: 32px;
    font-weight: 600;
    color: #052097;
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-in-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    color: #052097;
    margin-bottom: 10px;
}

.service-toggle {
    background-color: #052097;
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 auto;
}

.service-toggle:hover {
    background-color: #0056b3;
}

/* Стили для модального окна */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease-in-out;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #052097;
}

.modal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #052097;
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.modal-gallery img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.modal-gallery img:hover {
    transform: scale(1.05);
}

/* Стили для кнопки "Замовити" в модальном окне */
.modal-order-btn {
    display: inline-block;
    background-color: #052097;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.modal-order-btn:hover {
    background-color: #0056b3;
}

/* Стили для формы заказа */
.order-form {
    padding: 60px 0;
    background-color: #2b2828;
}

.order-content {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center; /* Центрирование по высоте */
}

.order-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрирование по ширине */
    justify-content: center; /* Центрирование по высоте */
    position: relative;
}

.order-title {
    font-size: 32px;
    font-weight: 600;
    color: #b4b105;
    text-align: center;
    margin-bottom: 20px;
}

.order-image img {
    width: 100%;
    max-width: 600px; /* Ограничим ширину изображения */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.form-wrapper {
    flex: 1;
    max-width: 600px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Остальные стили формы остаются без изменений */
.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.form-row .req {
    color: #052097;
}

.form-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #052097;
}

.form-input[type="textarea"] {
    height: 120px;
    resize: vertical;
}

.form-submit {
    background-color: #052097;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #0056b3;
}

.right {
    text-align: right;
}

.success-message {
    display: none;
    text-align: center;
    color: #052097;
    font-size: 18px;
    margin-top: 20px;
}

/* Адаптивность */
/* Адаптивность для мобильных устройств (header) */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .logo-img {
        max-width: 80px;
        width: 25vw;
        margin-bottom: 10px;
    }

    .company-name {
        font-size: 20px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
    }

    .menu {
        display: none;
        flex-direction: column;
        gap: 15px;
        width: 150px;
        height: 100vh;
        background-color: #fff;
        padding: 20px;
        position: fixed;
        top: 0;
        right: -150px;
        z-index: 1000;
        border-left: 1px solid #ddd;
        transition: right 0.3s ease;
    }

    .menu.active {
        display: flex;
        right: 0;
    }

    .menu li {
        display: block;
    }

    .menu a {
        font-size: 16px;
    }

    .social-icons {
        margin-top: 20px;
    }

    .social-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-width: 60px;
        width: 20vw;
    }

    .company-name {
        font-size: 18px;
    }

    .menu a {
        font-size: 14px;
    }

    .social-icon {
        font-size: 16px;
    }
}

/* Адаптивность для баннера */
@media (max-width: 768px) {
    .banner {
        height: 400px;
    }

    .banner-content {
        padding: 20px;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .banner-button {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 300px;
    }

    .banner-content h1 {
        font-size: 20px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .banner-button {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Адаптивность для футера */
@media (max-width: 600px) {
    .footer .menu {
        flex-direction: column;
        gap: 10px;
    }
}

/* Адаптивность для галереи */
@media (max-width: 768px) {
    .gallery {
        padding: 40px 0;
    }

    .gallery h2 {
        font-size: 28px;
    }

    .gallery-item {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .gallery h2 {
        font-size: 24px;
    }

    .gallery-item {
        width: 250px;
    }
}

/* Адаптивность для услуг */
@media (max-width: 768px) {
    .services {
        padding: 40px 0;
    }

    .services h2 {
        font-size: 28px;
    }

    .services .services-container .service-item {
        width: 250px;
    }

    .services .services-container .service-item h3 {
        font-size: 20px;
    }

    .services .services-container .service-item p {
        font-size: 14px;
    }

    .service-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services h2 {
        font-size: 24px;
    }

    .services .services-container .service-item {
        width: 100%;
        max-width: 300px;
    }

    .service-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Адаптивность для отзывов */
@media (max-width: 768px) {
    .reviews {
        padding: 40px 0;
    }

    .reviews h2 {
        font-size: 28px;
    }

    .reviews .reviews-slider .review-item {
        flex: 0 0 300px;
    }

    .reviews-slider {
        padding: 0 40px;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .reviews h2 {
        font-size: 24px;
    }

    .reviews .reviews-slider .review-item {
        flex: 0 0 100%;
        max-width: 350px;
        margin-right: 0;
    }

    .reviews-slider {
        padding: 0 30px;
    }

    .slider-prev, .slider-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* Адаптивность для кнопки "Наверх" */
@media (max-width: 480px) {
    .scroll-top {
        width: 35px;
        height: 35px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }
}

/* Адаптивность для "Про нас" */
@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }

    .about .col-left,
    .about .col-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-title {
        font-size: 28px;
    }

    .about-subtitle {
        font-size: 14px;
    }

    .features-list {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 24px;
    }

    .features-list li {
        margin-bottom: 10px;
    }
}

/* Адаптивность для "Контакти" */
@media (max-width: 768px) {
    .contacts {
        padding: 40px 0;
    }

    .contacts-title {
        font-size: 28px;
    }

    .contacts .col-left,
    .contacts .col-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-subtitle {
        font-size: 20px;
    }

    .contact-list {
        font-size: 14px;
    }

    .contact-item i {
        font-size: 16px;
    }

    .map iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contacts-title {
        font-size: 24px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .contact-item {
        margin-bottom: 10px;
    }

    .contact-item i {
        font-size: 14px;
    }
}

/* Адаптивность для "Послуги" */
@media (max-width: 768px) {
    .services {
        padding: 40px 0;
    }

    .services-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .service-name {
        font-size: 18px;
    }

    .service-toggle {
        font-size: 12px;
        padding: 6px 12px;
    }

    .modal-content {
        max-width: 90%;
    }

    .modal-gallery img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item img {
        width: 80px;
        height: 80px;
    }

    .service-name {
        font-size: 16px;
    }

    .modal-content h2 {
        font-size: 20px;
    }

    .modal-content p {
        font-size: 14px;
    }

    .modal-gallery img {
        width: 80px;
        height: 80px;
    }
}
/* Адаптивность для "Послуги" */
@media (max-width: 768px) {
    /* Существующие стили остаются */
    .modal-order-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    /* Существующие стили остаются */
    .modal-order-btn {
        font-size: 12px;
        padding: 6px 12px;
        width: 100%; /* Полная ширина на маленьких экранах */
    }
}

@media (max-width: 768px) {
    .order-form {
        padding: 40px 0;
    }

    .order-content {
        flex-direction: column;
        gap: 20px;
    }

    .order-image {
        width: 100%;
        padding: 0 20px;
    }

    .order-title {
        font-size: 28px;
    }

    .order-image img {
        max-width: 300px; /* Уменьшаем изображение на планшетах */
    }

    .form-wrapper {
        max-width: 100%;
        padding: 20px;
    }

    .form-input, .form-submit {
        font-size: 14px;
    }

    .form-input[type="textarea"] {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .order-title {
        font-size: 24px;
    }

    .order-image img {
        max-width: 250px; /* Ещё меньше на телефонах */
    }

    .form-row {
        margin-bottom: 15px;
    }

    .form-input {
        padding: 8px;
    }

    .form-input[type="textarea"] {
        height: 80px;
    }

    .form-submit {
        width: 100%;
        padding: 10px;
    }

    .right {
        text-align: center;
    }
}

.about {
    padding: 60px 0;
    background-color: #e6e4e4;
}
.about h2 {
    font-size: 32px;
    font-weight: 600;
    color: #052097;
    text-align: center;
    margin-bottom: 20px;
}
.about p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}