body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
}
.section-icon {
    font-size: 30px;
    margin: 40px 0; /* Отступы сверху и снизу */
    color: #ffcc00;
    width: 100%; /* Иконка занимает всю ширину */
    text-align: center; /* Центрирование иконки */
}

@media (min-width: 888px) {
    .section-icon {
        display: block; /* Блочный элемент на ПК */
    }
}
.top-bar {
    background: #333;
    color: #ffcc00;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

.header {
    background: #fff;
    padding: 10px 20px;
    /* width: 100%; */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    padding: 10px;
}

.logo {
    max-width: 100px;
}

.header-text {
    font-size: 24px;
    text-align: center;
    color: #000; /* Добавлен черный цвет текста */
}

.container {
    text-align: center;
    padding: 20px;
}



.service img {
    width: 100%;
    border-radius: 8px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1144px; /* Максимальная ширина для ПК */
    margin: 0 auto; /* Центрирование контейнера */
}

.service {
    flex: 1 1 300px; /* Минимальная ширина блока */
    margin: 10px;
}

@media (max-width: 888px) {
    .services {
        flex-direction: column;
        max-width: 100%; /* Отмена ограничения ширины для мобильных */
    }
    .header-container {
        flex-direction: column;
    }
    .header-text {
        font-size: 20px;
        margin-top: 10px;
        color: #000; /* Добавлен черный цвет текста */
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 80px;
    }
    .header-text {
        font-size: 18px;
        color: #000; /* Добавлен черный цвет текста */
    }
}

.pricing-section {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
}

.pricing-table {
    width: 100%;
    max-width: 1144px;
    margin: 0 auto;
    border-collapse: collapse;
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    border: 1px solid #ccc;
    text-align: center;
    color: #000;
}

.pricing-table th {
    background-color: #eaeaea;
    font-weight: bold;
}
.pricing-section h2 {
    margin-bottom: 20px;
    color: #000;
}
.table-container {
    overflow-x: auto; /* Добавляет горизонтальную прокрутку только для таблицы */
}

.powder-coating-section {
    padding: 20px;
    background-color: #fff;
    color: #000;
}

.powder-coating-content {
    display: flex;
    flex-direction: row; /* Горизонтальное расположение для ПК */
    gap: 20px;
    max-width: 1144px;
    margin: 0 auto;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.images-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.powder-coating-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.powder-coating-text h3 {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .powder-coating-content {
        flex-direction: column-reverse; /* Вертикальное расположение с текстом наверху для мобильных */
    }
    .images-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.top-bar a {
    color: inherit; /* Использует текущий цвет текста */
    text-decoration: none; /* Убирает подчеркивание */
}

.button-container {
    display: flex;
    justify-content: center;
}

.call-button {
    background-color: #ffcc00; /* Оранжевый цвет кнопки */
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #e6b800; /* Немного темнее при наведении */
}
.iframe-container {
    max-width: 1144px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0; /* Отступ сверху и снизу */
    display: flex;
    justify-content: center;
}

iframe {
    width: 100%;
    border: none;
}
