/* Main Styles for PolaTouris */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
}

.main-nav .nav-list li {
    margin-left: 20px;
}

.main-nav .nav-list a {
    color: #555;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: #e74c3c;
}

.main-nav .nav-list a.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e74c3c;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #555;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/tatry.svg');
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

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

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #e74c3c;
    color: #fff;
    border: 2px solid #e74c3c;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #333;
}

.btn-outline {
    background-color: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-outline:hover {
    background-color: #e74c3c;
    color: #fff;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #e74c3c;
}

.section-header p {
    color: #777;
    font-size: 1.2rem;
}

/* About Us Section */
.about-us {
    background-color: #fff;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.stat-text {
    color: #555;
    font-weight: 500;
}

/* Offer Section */
.offer {
    background-color: #f8f8f8;
}

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

.offer-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.offer-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.offer-card h3 {
    margin-bottom: 15px;
}

.offer-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Why Us Section */
.why-us {
    background-color: #fff;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-right: 20px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(231, 76, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-content p {
    color: #666;
}

/* Attractions Section */
.attractions {
    background-color: #f8f8f8;
}

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

.attraction-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.attraction-image {
    height: 200px;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.attraction-content {
    padding: 20px;
}

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

.attraction-content p {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
}

.testimonial-slider {
    margin: 0 auto;
    max-width: 900px;
}

.testimonial-slide {
    padding: 20px;
}

.testimonial-content {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

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

.author-avatar {
    font-size: 2rem;
    margin-right: 15px;
    color: #e74c3c;
}

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

.author-info p {
    color: #777;
    margin-bottom: 0;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/tatry.svg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
}

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

.newsletter-content h2 {
    color: #9b2222;
    margin-bottom: 20px;
}

.newsletter-content p {
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    margin-bottom: 20px;
}

.form-group input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
}

.form-group button {
    border-radius: 0 30px 30px 0;
    padding: 0 30px;
    border: none;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.form-consent input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-consent label {
    font-size: 0.9rem;
}

.form-consent a {
    color: #e74c3c;
    text-decoration: underline;
}

/* Contact Section */
.contact {
    background-color: #f8f8f8;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    color: #e74c3c;
    margin-right: 15px;
    min-width: 20px;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e74c3c;
    color: #fff;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #c0392b;
}

.contact-form {
    flex: 1;
}

.contact-form h3 {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 20px;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-control:focus {
    outline: none;
    border-color: #e74c3c;
}

/* Footer */
.footer {
    background-color: #222;
    color: #fff;
    padding: 80px 0 0;
}

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

.footer-column h3 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #e74c3c;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo h3 {
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-logo h3:after {
    display: none;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
}

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

.footer address i {
    margin-right: 10px;
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    color: #aaa;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.legal-links a:hover,
.legal-links a.active {
    color: #e74c3c;
}

/* Image Placeholders */
.placeholder-img {
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #aaa;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.image-placeholder.large i {
    font-size: 5rem;
}

/* Blog Styles */
.blog-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/tatry.svg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 120px 0 60px;
}

.blog-header h1 {
    color: #fff;
}

.blog-content {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.blog-content .container {
    display: flex;
    gap: 40px;
}

.blog-sidebar {
    flex: 1;
    max-width: 300px;
}

.blog-grid {
    flex: 2;
}

.sidebar-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-section h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
}

.search-form button {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.categories ul {
    list-style: none;
}

.categories li {
    margin-bottom: 10px;
}

.categories a {
    color: #555;
    display: flex;
    justify-content: space-between;
}

.categories a:hover {
    color: #e74c3c;
}

.popular-posts ul {
    list-style: none;
}

.popular-posts li {
    margin-bottom: 15px;
}

.popular-posts a {
    display: flex;
    align-items: center;
    color: #333;
}

.popular-posts a:hover {
    color: #e74c3c;
}

.popular-post-img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.popular-post-content h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.popular-post-content span {
    color: #777;
    font-size: 0.8rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    background-color: #f5f5f5;
    color: #555;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background-color: #e74c3c;
    color: #fff;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card.large {
    grid-column: span 2;
}

.blog-image {
    height: 200px;
}

.blog-content {
    padding: 20px;
}

.blog-categories {
    margin-bottom: 15px;
}

.category {
    background-color: #f5f5f5;
    color: #555;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-right: 10px;
}

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

.blog-meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
}

/* Pagination */
.pagination {
    padding: 20px 0 60px;
    background-color: #f8f8f8;
}

.pagination-list {
    display: flex;
    justify-content: center;
    list-style: none;
}

.pagination-list li {
    margin: 0 5px;
}

.pagination-list a, .pagination-list span {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
    color: #555;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pagination-list li.active a {
    background-color: #e74c3c;
    color: #fff;
}

.pagination-list a:hover {
    background-color: #eee;
}

.pagination-list li.active a:hover {
    background-color: #c0392b;
}

.pagination-next a {
    width: auto;
    padding: 0 15px;
}

/* Article Page Styles */
.article-header {
    background-color: #fff;
    padding: 120px 0 30px;
    text-align: center;
}

.article-categories {
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #777;
}

.article-meta > div {
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 7px;
}

.article-featured-image {
    padding: 0 0 30px;
    background-color: #fff;
}

.featured-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.article-content {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.article-main {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 40px;
}

.article-text h2, .article-text h3 {
    margin-top: 30px;
}

.article-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    border-left: 3px solid #e74c3c;
    padding-left: 20px;
}

.article-image-container {
    margin: 30px 0;
}

.article-image {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.image-caption {
    text-align: center;
    color: #777;
    font-style: italic;
}

.article-tip {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    border-left: 3px solid #e74c3c;
}

.article-tip h3 {
    display: flex;
    align-items: center;
    margin-top: 0;
    color: #e74c3c;
}

.article-tip h3 i {
    margin-right: 10px;
}

.article-tip p {
    margin-bottom: 0;
}

.article-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 40px;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    overflow: hidden;
}

.author-bio h3 {
    margin-bottom: 10px;
}

.author-bio p {
    color: #666;
    margin-bottom: 0;
}

.article-tags {
    margin-top: 30px;
}

.article-tags span {
    color: #555;
    font-weight: 600;
    margin-right: 10px;
}

.related-posts {
    background-color: #fff;
    padding: 60px 0;
}

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

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

.related-post-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-post-img {
    height: 150px;
}

.related-post-content {
    padding: 20px;
}

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

.related-post-meta {
    color: #777;
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 60px;
    background-color: #f8f8f8;
}

.thank-you-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 40px;
}

.thank-you-icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 20px;
}

.thank-you-content h1 {
    margin-bottom: 20px;
}

.thank-you-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 30px;
    text-align: left;
}

.thank-you-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.thank-you-list i {
    color: #e74c3c;
    margin-right: 10px;
}

.thank-you-subtext {
    color: #777;
    margin-bottom: 30px;
}

.thank-you-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.newsletter-recommendations h2 {
    text-align: center;
    margin-bottom: 30px;
}

.recommendation-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.recommendation-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
}

.recommendation-image {
    width: 120px;
    height: 100%;
}

.recommendation-content {
    padding: 20px;
    flex: 1;
}

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

.recommendation-content p {
    color: #666;
    margin-bottom: 15px;
}

/* Legal Pages */
.legal-content {
    padding: 120px 0 60px;
    background-color: #f8f8f8;
}

.legal-header {
    margin-bottom: 40px;
}

.legal-date {
    color: #777;
    margin-bottom: 20px;
}

.legal-body {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-body h2 {
    margin-top: 40px;
}

.legal-body h3 {
    margin-top: 30px;
    color: #555;
}

.legal-body p, .legal-body ul, .legal-body ol {
    margin-bottom: 20px;
}

.legal-body ul, .legal-body ol {
    margin-left: 20px;
}

.legal-body li {
    margin-bottom: 10px;
}

.cookie-settings-trigger {
    margin-top: 40px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .blog-content .container {
        flex-direction: column;
    }
    
    .blog-sidebar {
        max-width: none;
        order: 2;
    }
    
    .blog-grid {
        order: 1;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 10px 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav .nav-list {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .main-nav .nav-list.active {
        display: flex;
    }
    
    .main-nav .nav-list li {
        margin: 10px 0;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .recommendation-cards {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .form-group button {
        border-radius: 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .offer-cards, .attraction-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .thank-you-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-main {
        padding: 20px;
    }
}