        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
        }
/* Шапка */
/* Header */
header {
    background-color: #2a7a9e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Заголовок и подзаголовок */
/* Header */
header {
    background-color: #2a7a9e;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Заголовок по центру */
.header-title {
    text-align: center;
    flex-grow: 1;
}

.header-title h1 {
    margin: 0;
    font-size: 24px;
}

.header-title p {
    margin: 5px 0 0;
    font-size: 16px;
}

/* Иконка Login */
.header-login {
    display: flex;
    align-items: center;
}

.header-login img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .header-title h1 {
        font-size: 20px;
    }

    .header-title p {
        font-size: 14px;
    }

    .header-login img {
        width: 20px;
        height: 20px;
    }
}
        .container {
            padding: 20px;
        }
        .catalog-section {
            text-align: center;
        }
        .catalog-section h2 {
            font-size: 20px;
            color: #2a7a9e;
            margin-bottom: 15px;
        }
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            padding: 10px;
            max-width: 900px;
            margin: 0 auto;
        }
        .catalog-item {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            text-align: center;
            padding: 10px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .catalog-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .catalog-item img {
            max-width: 100%;
            max-height: 100px;
            object-fit: contain;
            margin-bottom: 10px;
        }
        .catalog-item a {
            text-decoration: none;
            color: #2a7a9e;
            font-weight: bold;
            margin-top: auto;
        }
        .contact-section {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
            background-color: #eaf4f9;
            border-radius: 10px;
        }
        .contact-section p {
            font-size: 16px;
            margin: 10px 0;
        }
        .contact-section a {
            text-decoration: none;
            display: inline-block;
            margin: 10px 10px 0;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            color: white;
            border-radius: 5px;
        }
        .contact-section .whatsapp {
            background-color: #25D366;
        }
        .contact-section .email {
            background-color: #2a7a9e;
        }
        .benefits-section {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
        }
        .benefits-section img {
            max-width: 100%;
            max-height: 400px; /* Ограничение высоты фото */
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .benefits-section h3 {
            font-size: 20px;
            color: #2a7a9e;
            margin-bottom: 10px;
        }
        .benefits-section p {
            font-size: 18px;
            line-height: 1.8;
            margin-top: 10px;
        }
        footer {
            background-color: #2a7a9e;
            color: white;
            text-align: center;
            padding: 10px 0;
        }