/* Global Styles */
:root {
    --primary-color: #1a6bb3;
    --primary-dark: #0e5599;
    --secondary-color: #e67e22;
    --secondary-dark: #d35400;
    --accent-color: #34b3a3;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f9f9f9;
    --bg-dark: #2c3e50;
    --border-color: #ddd;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --font-primary: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 4px;
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --transition: all 0.3s ease;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

p {
    margin-bottom: var(--spacing-sm);
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn, button.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius);
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn:hover, button.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.center {
    text-align: center;
}

section {
    padding: var(--spacing-lg) 0;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
}

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

nav ul {
    display: flex;
}

nav ul li {
    margin-left: var(--spacing-md);
}

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 5px;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Story Section */
.story {
    background-color: var(--bg-light);
    text-align: center;
}

.story .container {
    max-width: 800px;
}

.story h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.story p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Featured Tours Section */
.featured-tours h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

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

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

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.tour-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.tour-card .btn-small {
    margin: 0 1.5rem 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-light);
    text-align: center;
}

.testimonials h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

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

.testimonial {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: var(--spacing-md);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: var(--spacing-sm);
}

.client h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.client p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Blog Preview Section */
.blog-preview h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

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

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
}

.blog-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-about img {
    height: 60px;
    margin-bottom: var(--spacing-sm);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: var(--spacing-sm);
}

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

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: var(--spacing-md);
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    margin-bottom: var(--spacing-sm);
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: white;
}

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

.btn-cookie.reject {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-content a {
    color: white;
    text-decoration: underline;
}

/* Page Banner (for internal pages) */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-banner .subtitle {
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* About Page Styles */
.about-intro {
    padding: var(--spacing-lg) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.about-text h3 {
    margin-top: var(--spacing-md);
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

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

.values {
    background-color: var(--bg-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.values h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

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

.value-card {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-card .icon {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.team {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.team h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    max-width: 200px;
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow);
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-member p {
    margin-bottom: var(--spacing-sm);
}

.team-member p:nth-of-type(1) {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.achievements {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.achievements h2 {
    margin-bottom: var(--spacing-lg);
    color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.achievement .number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.achievement p {
    font-size: 1.2rem;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

/* Blog Page Styles */
.blog-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: var(--spacing-md);
}

.blog-posts {
    padding-top: 0;
}

.blog-grid article {
    margin-bottom: var(--spacing-lg);
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-md);
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.blog-content {
    padding: var(--spacing-md);
}

.blog-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-content h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.newsletter {
    background-color: var(--bg-light);
    padding: var(--spacing-lg) 0;
}

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

.newsletter h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.newsletter p {
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
}

/* Blog Post Styles */
.blog-post-container {
    padding: var(--spacing-lg) 0;
}

.blog-post-header {
    margin-bottom: var(--spacing-lg);
}

.blog-post-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    color: var(--text-light);
}

.blog-post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-post-header h2 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

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

.featured-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: var(--spacing-md);
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: var(--spacing-md) 0;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.blog-post-content h3 {
    font-size: 1.4rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.blog-post-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.blog-post-content ul, .blog-post-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-md);
}

.blog-post-content li {
    margin-bottom: var(--spacing-xs);
}

.blog-post-content ul {
    list-style: disc;
}

.blog-post-content ol {
    list-style: decimal;
}

.author-bio {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    margin-top: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-bio h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.author-bio p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.blog-navigation {
    margin: var(--spacing-lg) 0;
}

.blog-nav-links {
    display: flex;
    justify-content: space-between;
}

.related-posts {
    margin-top: var(--spacing-lg);
}

.related-posts h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

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

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

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

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h4 {
    padding: var(--spacing-sm) var(--spacing-sm) 0;
    font-size: 1.1rem;
}

.related-card a {
    display: inline-block;
    padding: 0 var(--spacing-sm) var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Page Styles */
.contact-info {
    padding-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

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

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

.contact-icon {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-card h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.contact-card p {
    margin-bottom: 5px;
}

.contact-card .detail {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.form-container {
    background-color: white;
    border-radius: var(--radius);
    padding: var(--spacing-md);
    box-shadow: var(--shadow);
}

.form-intro {
    margin-bottom: var(--spacing-md);
}

.form-intro h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group.full-width {
    grid-column: 1 / 3;
}

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

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

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.submit-btn {
    grid-column: 1 / 3;
    margin-top: var(--spacing-sm);
}

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

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

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
}

.faq-item {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

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

.modal-content {
    background-color: white;
    border-radius: var(--radius);
    max-width: 500px;
    margin: 15% auto;
    padding: var(--spacing-md);
    position: relative;
    animation: modalFade 0.3s;
}

@keyframes modalFade {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

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

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

.thank-you-message svg {
    color: var(--success-color);
    margin-bottom: var(--spacing-sm);
}

.thank-you-message h2 {
    color: var(--success-color);
    margin-bottom: var(--spacing-sm);
}

.close-btn {
    margin-top: var(--spacing-md);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: var(--spacing-md);
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-image img {
        height: 200px;
    }
    
    .contact-form-section {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-about img {
        margin: 0 auto var(--spacing-sm);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 0.95rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    header .container {
        flex-direction: column;
        padding: var(--spacing-sm);
    }
    
    .logo {
        margin-bottom: var(--spacing-sm);
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
    
    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    .submit-btn {
        grid-column: 1;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .modal-content {
        width: 90%;
    }
}
