/* Основные стили */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Заголовки */
h1, h2, h3 {
    color: #4a4a4a;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-top: 20px;
}

h2 {
    font-size: 1.8rem;
    margin: 15px 0;
}

/* Текстовые блоки */
p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px 20px;
    color: #555;
}

/* Кнопки */
.btn {
    background-color: #6b4f27;
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin: 15px auto;
    display: block;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #5a3f1f;
}

/* Блоки страницы */
.section {
    padding: 20px 15px;
    margin: 15px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Форма */
.popup {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.popup-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.popup-content label {
    font-size: 1rem;
    color: #4a4a4a;
}

.popup-content input, 
.popup-content textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.popup-content .btn {
    display: inline-block;
    width: auto;
    margin: 0;
}

/* Закрытие окна */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

/* Слайдер для фото */
.slider {
    display: flex;
    overflow-x: auto;
    padding: 15px 0;
    gap: 10px;
    scroll-behavior: smooth;
}

.slider img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

