body {
            font-family: Times New Roman, sans-serif; /* Установим шрифт для удобства */
            margin: 0; /* Убираем отступы по умолчанию */
            padding: 0; /* Убираем отступы по умолчанию */
        }
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between; /* Равномерное распределение элементов по ширине */
            padding: 20px;
            background-color: #616161; /* Цвет фона заголовка */
            color: #fff; /* Цвет текста */
        }
        .logo-container {
            display: flex;
            align-items: center;
        }
        .logo {
            width: 100px; /* Размер иконки */
            height: auto;
            margin-right: 20px;
        }
        .studio-name {
            font-size: 48px;
            margin-right: 20px;
            margin-left: 160px; /* Отступ от левого края */
        }
        .links {
            text-align: right;
            padding: 20px;
        }
        .links a {
            color: #fff; /* Цвет ссылок */
            text-decoration: none; /* Убираем подчеркивание ссылок */
            margin-left: 20px;
        }
        .links a:hover {
            color: #ccc; /* Цвет ссылки при наведении */
        }
        .main-content {
            display: flex;
            margin-top: 20px; /* Отступ от заголовка */
        }
        .description {
            flex: 1;
            line-height: 40px;
            padding-left: 300px; /* Отступ от левого края */
            max-width: calc(50% - 300px); /* Максимальная ширина текста */
            font-size: 21px; /* Увеличиваем размер шрифта на 3 пикселя */
        }
        .image {
            flex-shrink: 0;
            margin-left: 20px;
            max-height: calc(100vh - 100px); /* Максимальная высота для изображения */
            overflow: hidden; /* Обрезание изображения, если оно превышает высоту */
        }
        .image img {
            max-width: 80%;
            max-height: 80%;
            object-fit: cover;
        }
    .studio-title {
            font-size: 30px;
            margin-top: 20px;
            padding-left: 300px;
        }
    .studio-title1 {
            font-size: 20px;
            margin-top: 20px;
            text-align: center; /* Выравниваем заголовок по центру */
        }
        .studio-gallery {
            
            display: flex;
            justify-content: center;
            align-items: up;
            margin-top: 20px;
            flex-wrap: wrap; /* Разрешаем перенос элементов на новую строку */
        }
        .studio-item {
            margin: 0 10px;
            text-align: center;
            margin-bottom: 20px; /* Добавляем отступ снизу между элементами */
        }

        /* ДОБАВЛЕНО С НОВОЙ РАБОТЫ*/
        footer {
    background: #616161;
    color: white;
    padding: 40px 0 30px;
    margin-top: auto;
}

.contact-info {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info h3 {
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-details p {
    margin: 8px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details i {
    margin-right: 10px;
    font-size: 1.2em;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: #e3f2fd;
}




        .studio-item1 {
            margin: 0 50px;
            text-align: center;
            margin-bottom: 20px; /* Добавляем отступ снизу между элементами */
        }
        table {
            width: 500px;
            max-width: 100%;
            height: 200px;
            border-collapse: collapse;
            margin-top: 20px;
        }
        th, td {
            padding: 8px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #f2f2f2;
        }
        form {
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.8); /* Прозрачный белый фон формы */
            border-radius: 10px;
        }

        label, input {
            display: block;
            margin-bottom: 10px;
        }

        input[type="submit"] {
            background-color: #4CAF50; /* Зеленый цвет кнопки "Отправить" */
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        input[type="submit"]:hover {
            background-color: #45a049; /* Темно-зеленый цвет кнопки "Отправить" при наведении */
        }
        body1 {
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #808080; 
        }

