/* Основные стили для сайта Fitness Center Geo USA */

/* === Сброс стилей === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === Переменные === */
:root {
    --primary-color: #00a8cc;
    --secondary-color: #142850;
    --accent-color: #ff9900;
    --text-color: #333;
    --light-text: #666;
    --very-light-text: #999;
    --light-bg: #f8f9fa;
    --white: #fff;
    --dark-bg: #142850;
    --border-color: #e1e1e1;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --section-padding: 80px 0;
}

/* === Базовые стили === */
body {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* === Кнопки === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* === Хедер === */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
}

.logo img {
    width: 100%;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* === Главная страница === */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Приветствие на разных языках */
.greeting {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.multilingual-greeting {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.multilingual-greeting p {
    padding: 10px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Админка */
.admin-preview {
    padding: var(--section-padding);
}

.admin-frame {
    position: relative;
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.admin-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.admin-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Преимущества */
.features {
    padding: var(--section-padding);
    background-color: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
}

.feature h3 {
    margin-bottom: 15px;
}

/* Последние статьи */
.recent-posts {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 50px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-10px);
}

.post-image {
    height: 200px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    margin-bottom: 10px;
}

.post-content p {
    margin-bottom: 15px;
    color: var(--light-text);
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 10px;
}

.see-all-posts {
    margin-top: 40px;
    text-align: center;
}

/* === Страница заголовка === */
.page-header {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* === Страница блога === */
.blog-content {
    padding: var(--section-padding);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-card {
    display: flex;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 35%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-text {
    width: 65%;
    padding: 30px;
}

.blog-text h2 {
    margin-bottom: 10px;
}

.blog-meta {
    display: flex;
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-meta .date {
    margin-right: 15px;
}

.blog-meta .date:before {
    content: '📅';
    margin-right: 5px;
}

.blog-meta .author:before {
    content: '👤';
    margin-right: 5px;
}

.blog-text p {
    margin-bottom: 15px;
}

/* === Страница поста === */
.post-header {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.post-header h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.post-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: var(--light-bg);
    font-size: 0.9rem;
}

.post-author {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.post-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.post-date {
    margin-right: 20px;
}

.post-content {
    padding: var(--section-padding);
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
}

.post-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-body h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.post-body ul, 
.post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-body ul li, 
.post-body ol li {
    margin-bottom: 5px;
}

.post-body ul {
    list-style-type: disc;
}

.post-body ol {
    list-style-type: decimal;
}

.post-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.post-tags span {
    margin-right: 10px;
    font-weight: 500;
}

.post-tags a {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--light-text);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.post-share {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.post-share span {
    margin-right: 15px;
    font-weight: 500;
}

.post-share a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    color: var(--light-text);
    border-radius: 50%;
    margin-right: 10px;
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.post-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.post-navigation-prev,
.post-navigation-next {
    max-width: 45%;
}

.post-navigation a {
    display: block;
    color: var(--text-color);
}

.post-navigation a span {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.post-navigation a h4 {
    color: var(--primary-color);
    margin-bottom: 0;
}

.post-navigation a:hover h4 {
    color: var(--secondary-color);
}

.related-posts {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.related-post {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post-image {
    height: 180px;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post h3 {
    padding: 15px;
    padding-bottom: 10px;
    font-size: 1.1rem;
}

.related-post .read-more {
    display: block;
    text-align: center;
    padding: 10px 0;
    background-color: var(--light-bg);
    color: var(--text-color);
}

.related-post .read-more:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.related-post .read-more:after {
    content: none;
}

/* === Страница О нас === */
.about-intro {
    padding: var(--section-padding);
}

.about-intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-intro-text {
    flex: 1;
    padding-right: 40px;
    min-width: 300px;
}

.about-intro-image {
    flex: 1;
    min-width: 300px;
}

.about-intro-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.our-mission {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.mission-content h2 {
    text-align: center;
    margin-bottom: 50px;
}

.mission-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-box {
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.mission-box:hover {
    transform: translateY(-10px);
}

.mission-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
}

.our-values {
    padding: var(--section-padding);
}

.our-values h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.our-facilities {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.our-facilities h2 {
    text-align: center;
    margin-bottom: 50px;
}

.facilities-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.facilities-image {
    flex: 1;
    margin-right: 40px;
    min-width: 300px;
}

.facilities-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.facilities-list {
    flex: 1;
    min-width: 300px;
}

.facility-item {
    display: flex;
    margin-bottom: 30px;
}

.facility-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.facility-text h3 {
    margin-bottom: 5px;
}

.our-team {
    padding: var(--section-padding);
}

.our-team h2, 
.team-intro {
    text-align: center;
}

.team-intro {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 20px;
    margin-bottom: 5px;
}

.team-member p {
    padding: 0 20px;
}

.team-member p:nth-child(3) {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.team-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 5px;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonials {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-right: 20px;
}

.testimonial:last-child {
    margin-right: 0;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
}

.testimonial-content p:before {
    left: 0;
    top: -10px;
}

.testimonial-content p:after {
    right: 0;
    bottom: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.cta {
    padding: var(--section-padding);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/9.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
}

/* === Страница контактов === */
.contact-info {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
}

.contact-form-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    width: calc(50% - 10px);
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container input {
    width: auto;
    margin-right: 10px;
}

.map-section {
    padding: var(--section-padding);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-question h3 {
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-question {
    background-color: var(--light-bg);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    width: 80%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--light-text);
    cursor: pointer;
}

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: #4caf50;
    margin-bottom: 20px;
}

.thank-you-message h2 {
    margin-bottom: 15px;
}

.thank-you-message p {
    margin-bottom: 30px;
}

/* === Футер === */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: #ccc;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact p svg {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin: 0 10px;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
}

/* === Cookie Notice === */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin-bottom: 10px;
    margin-right: 20px;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* === Адаптивность === */
@media (max-width: 992px) {
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image, 
    .blog-text {
        width: 100%;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .about-intro-text, 
    .facilities-image {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        margin-top: 15px;
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-author, 
    .post-date {
        margin-bottom: 10px;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .post-navigation-prev, 
    .post-navigation-next {
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .testimonial {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        display: block;
        width: 100%;
    }
    
    .form-group {
        width: 100%;
    }
    
    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }
}
