/* Общие стили */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fdf6e3; /* Светлый фон */
    color: #333;
    margin: 0;
    padding: 0;
}

header, section, footer {
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
}

/* Заголовки */
h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: #b22222; /* Тёмно-красный цвет для заголовков */
}

/* Стили для заголовков секций */
header h1, section h2, footer p {
    border-bottom: 2px solid #b22222; /* Нижняя граница заголовков */
    padding-bottom: 10px;
}

/* Стили для текста */
p {
    font-size: 18px;
    margin: 10px 0;
}

/* Стили для изображений */
img {
    width: auto;
    height: 400px;
    border-radius: 8px;
}

/* Стили для списка */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background: #ffe4b5; /* Светло-желтый фон для элементов списка */
    margin: 5px 0;
    padding: 10px;
    border-radius: 8px;
}

/* Стили для формы подписки */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input[type="email"], button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

button {
    background-color: #b22222; /* Тёмно-красный цвет кнопки */
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #8b0000; /* Более тёмный оттенок при наведении */
}

/* Стили для карточек специалистов и отзывов */
#specialists div, #reviews div {
    background: #ffe4b5; /* Светло-желтый фон для карточек */
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
}

/* Стили для контактного блока */
#contacts {
    background: #ffe4b5; /* Светло-желтый фон */
    padding: 20px;
    border-radius: 8px;
}

/* Стили для подвала */
footer {
    background: #b22222; /* Тёмно-красный фон */
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
}

/* Стили для cookie-banner */
.cookie-banner {
    background: #ffe4b5; /* Светло-желтый фон */
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #b22222; /* Верхняя граница */
}

.cookie-banner p {
    margin: 0;
}

#acceptCookieButton {
    background-color: #b22222; /* Тёмно-красный цвет кнопки */
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#acceptCookieButton:hover {
    background-color: #8b0000; /* Более тёмный оттенок при наведении */
}


.cookie-banner {
    background-color: #ffe0b2;
    padding: 15px;
    text-align: center;
    border-radius: 10px; /* Более круглые края */
}

.cookie-banner p {
    font-size: 16px;
    margin: 0;
}

.cookie-banner a {
    color: #333;
    text-decoration: underline;
}

.privacy-policy-content {
    padding: 30px;
}
