/* Base Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #457b9d;
    --tertiary-color: #1d3557;
    --light-color: #f1faee;
    --dark-color: #1d3557;
    --gray-color: #a8a8a8;
    --light-gray-color: #f5f5f5;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --container-width: 1200px;
    --text-color: #333;
    --border-radius: 6px;
    --transition-speed: 0.15s;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1.5rem;
}

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

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

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.btn:hover {
    background-color: #c8232f; /* Затемненный вариант primary-color */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

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

.btn-tertiary {
    background-color: transparent;
    color: var(--tertiary-color);
    border: 2px solid var(--tertiary-color);
}

.btn-tertiary:hover {
    background-color: var(--tertiary-color);
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Header */
.main-header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
}

.main-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-nav a:hover::after, 
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary-color);
}

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

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}

/* Hero Section */
.hero-section {
    background-color: var(--light-color);
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}
.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 2rem;
}

.hero-content {
    flex: 0 0 50%;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-image {
    flex: 0 0 45%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: white;
}

.about-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 0 0 50%;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    flex: 0 0 40%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat-item {
    flex: 0 0 calc(50% - 0.75rem);
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform var(--transition-speed);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    margin-bottom: 0;
    font-weight: 600;
}

/* Attractions Section */
.attractions-section {
    padding: 6rem 0;
    background-color: var(--light-gray-color);
}

.attractions-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.attraction-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform var(--transition-speed);
}

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

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

.attraction-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.attraction-item p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* Places Section */
.places-section {
    padding: 6rem 0;
    background-color: white;
}

.places-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.place-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

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

.place-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.place-card:hover .place-image img {
    transform: scale(1.1);
}

.place-info {
    padding: 1.5rem;
}

.place-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.place-info p {
    margin-bottom: 0;
    color: var(--text-color);
}

/* Offer Section */
.offer-section {
    padding: 6rem 0;
    background-color: var(--light-gray-color);
}

.offer-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.offer-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.offer-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    transition: transform var(--transition-speed);
}

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

.offer-card.featured {
    border: 2px solid var(--primary-color);
    padding-top: 3.5rem;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

.offer-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.offer-card ul {
    margin-bottom: 2rem;
    text-align: left;
}

.offer-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray-color);
}

.offer-card ul li:last-child {
    border-bottom: none;
}

.offer-card ul li::before {
    content: "✓";
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: white;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.testimonial-image {
    flex: 0 0 80px;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.rating {
    color: gold;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.testimonial-content p {
    margin-bottom: 0.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background-color: var(--tertiary-color);
    color: white;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.form-group {
    flex: 0 0 100%;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: var(--light-gray-color);
}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    flex: 0 0 calc(50% - 2rem);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--primary-color);
}

.contact-item h3 {
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin-bottom: 0;
}

.social-media {
    margin-top: 3rem;
}

.social-media h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--tertiary-color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

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

.contact-image {
    flex: 0 0 calc(50% - 2rem);
}

/* Blog Preview Section */
.blog-preview-section {
    padding: 6rem 0;
    background-color: white;
}

.blog-preview-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

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

.blog-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.blog-content p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform var(--transition-speed);
}

.read-more:hover {
    color: #c8232f; /* Затемненный вариант primary-color */
}

.read-more:hover::after {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
}

/* Footer */
.main-footer {
    background-color: var(--tertiary-color);
    padding: 4rem 0 2rem;
    color: var(--light-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    margin-bottom: 0;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-legal a {
    color: var(--light-color);
    opacity: 0.8;
    transition: opacity var(--transition-speed);
}

.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
    color: var(--light-color);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-contact ul li svg {
    margin-right: 0.75rem;
}

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

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Thanks Section */
.thanks-section {
    padding: 8rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    color: var(--success-color);
    box-shadow: var(--box-shadow);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-section {
    padding: 6rem 0;
    background-color: white;
}

.legal-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray-color);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.5rem;
}

.legal-content ul {
    list-style-type: disc;
}

.legal-content ol {
    list-style-type: decimal;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    text-decoration: none;
}

/* Blog Pages */
.blog-header {
    padding: 4rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--text-color);
}

.blog-content {
    padding: 4rem 1rem;
    background-color: white;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post {
    display: flex;
    gap: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-post-image {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    flex: 1;
    padding: 2rem 2rem 2rem 0;
}

.blog-post-date {
    display: flex;
    align-items: center;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.blog-post-date svg {
    margin-right: 0.5rem;
}

.blog-post-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

/* Blog Article */
.blog-article {
    padding: 4rem 0;
    background-color: white;
}

.article-header {
    margin-bottom: 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-color);
}

.back-link svg {
    margin-right: 0.5rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.article-date, .article-author {
    display: flex;
    align-items: center;
}

.article-date svg, .article-author svg {
    margin-right: 0.5rem;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.article-image {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.article-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--tertiary-color);
}

.article-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content ul li,
.article-content ol li {
    margin-bottom: 0.75rem;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-content a:hover {
    text-decoration: none;
}

.article-share {
    display: flex;
    align-items: center;
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.article-share span {
    margin-right: 1rem;
    font-weight: 600;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.article-navigation-prev a,
.article-navigation-next a {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--tertiary-color);
    transition: color var(--transition-speed);
}

.article-navigation-prev a:hover,
.article-navigation-next a:hover {
    color: var(--primary-color);
}

.article-navigation-prev svg {
    margin-right: 0.5rem;
}

.article-navigation-next svg {
    margin-left: 0.5rem;
}

.related-posts {
    padding: 4rem 0;
    background-color: var(--light-gray-color);
}

.related-posts h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .about-text, .about-stats {
        flex: 0 0 100%;
    }
    
    .offer-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
    
    .contact-grid {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info, .contact-image {
        flex: 0 0 100%;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .blog-post-image {
        flex: 0 0 250px;
    }
    
    .blog-post-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav.active li {
        margin: 0;
        width: 100%;
    }
    
    .main-nav.active a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }
    
    .main-nav.active a::after {
        display: none;
    }
    
    .hero-section .container {
        flex-direction: column;
        padding: 4rem 1rem;
    }
    
    .hero-content, .hero-image {
        flex: 0 0 100%;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .offer-card {
        flex: 0 0 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .form-group {
        width: 100%;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section h2, 
    .about-section h2, 
    .attractions-section h2, 
    .places-section h2, 
    .offer-section h2, 
    .testimonials-section h2, 
    .blog-preview-section h2 {
        font-size: 2rem;
    }
    
    .thanks-content h1, 
    .legal-section h1, 
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
    }
}
