<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --light-color: #f5f5f5;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #f5f5f5;
    --gray-color: #7f8c8d;
    --light-gray: #ecf0f1;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
}

.btn-text {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-text i {
    margin-left: 8px;
    transition: var(--transition);
}

.btn-text:hover {
    color: #d35400;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Language Switcher */
.language-switcher {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.language-switcher .container {
    display: flex;
    justify-content: flex-end;
    padding: 0;
}

.language-options {
    display: flex;
    align-items: center;
}

.language-options a {
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.language-options a.active {
    color: var(--secondary-color);
}

.language-options span {
    margin: 0 5px;
    opacity: 0.5;
}

/* Reveal Animations */
.reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
    transition: all 1s ease;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left.active, .reveal-right.active, .reveal-up.active {
    opacity: 1;
    transform: translate(0);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition);
}

.main-nav.scrolled .container {
    padding: 10px 0;
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

.logo {
  font-family: 'Tangerine', cursive;
  font-size: 48px;
  color: #333;
}

.main-nav.scrolled .logo img {
    height: 50px;
}

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

.nav-menu li {
    margin: 0 15px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}

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

.book-btn {
    margin-left: 15px;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--dark-color);
    border-radius: 3px;
    left: 0;
    transition: var(--transition);
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 8px;
}

.nav-toggle span:nth-child(3) {
    top: 16px;
}

.nav-toggle.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 30px; /* Adjust for language switcher */
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide:nth-child(1) {
    background-image: url('images/hero1.jpg');
}

.slide:nth-child(2) {
    background-image: url('images/hero2.jpg');
}

.slide:nth-child(3) {
    background-image: url('images/hero3.jpg');
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
}

.slide-content p {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.8s;
}

.slide.active .slide-content h1,
.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
}

.slider-dots {
    display: inline-flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: white;
    transform: scale(1.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Story Section */
.story {
    padding: 8rem 0;
    background-color: white;
}

.chapter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.chapter-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.chapter-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--secondary-color);
    border-radius: 10px;
    z-index: -1;
}

.chapter-content {
    padding: 20px;
}

.chapter-number {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.chapter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.chapter-content p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.05rem;
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('images/quote-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

blockquote {
    max-width: 800px;
    margin: 0 auto;
}

blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
    font-style: italic;
}

blockquote cite {
    font-size: 1.2rem;
    font-style: normal;
    color: var(--light-gray);
}

/* Journeys Section */
.journeys {
    padding: 8rem 0;
    background-color: var(--light-color);
}

.journey-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 6rem;
    align-items: center;
}

.journey-item:last-child {
    margin-bottom: 0;
}

.journey-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.journey-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journey-item:hover .journey-image img {
    transform: scale(1.05);
}

.journey-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.journey-content p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.05rem;
}

.journey-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.journey-details li {
    margin-right: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--gray-color);
    display: flex;
    align-items: center;
}

.journey-details i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Guides Section */
.guides {
    padding: 8rem 0;
    background-color: var(--light-color);
}

.guides-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.guide-card {
    max-width: 450px; /* Define a maximum width for the card */
    width: 100%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.guide-image {
    height: 300px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.guide-info {
    padding: 25px;
}

.guide-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.guide-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.guide-info p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('images/testimonial-bg.jpg') no-repeat center center/cover;
    color: white;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    animation: fadeIn 1s ease;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
    font-style: normal;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.prev-testimonial, .next-testimonial {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: var(--transition);
}

.prev-testimonial:hover, .next-testimonial:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Booking Section */
.booking {
    padding: 8rem 0;
    background-color: white;
}

.booking-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.booking-form {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.booking-info {
    padding: 20px;
}

.booking-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.booking-info p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.info-box {
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 3px solid var(--secondary-color);
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.info-box h4 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-direct {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 10px;
}

.contact-direct p {
    margin-bottom: 15px;
    font-weight: 600;
}

.phone-link, .email-link {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.phone-link i, .email-link i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.phone-link:hover, .email-link:hover {
    color: var(--secondary-color);
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin-right: 15px;
    transition: var(--transition);
}

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

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

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-text p {
    opacity: 0.9;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    flex: 1;
    max-width: 500px;
    margin-left: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 0 30px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-footer {
  font-family: 'Tangerine', cursive;
  font-size: 48px;
  color: #fff;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.95rem;
    max-width: 300px;
}

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

.link-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    opacity: 0.8;
    font-size: 0.9rem;
    transition: var(--transition);
}

.link-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    align-items: center;
}

.payment-methods span {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-right: 15px;
}

.payment-methods i {
    font-size: 1.5rem;
    margin-left: 10px;
    opacity: 0.8;
}

/* Media Queries */
@media (max-width: 1200px) {
    .slide-content h1 {
        font-size: 3.5rem;
    }
    
    .slide-content p {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .chapter-content h2 {
        font-size: 2.2rem;
    }
    
    .journey-content h3 {
        font-size: 1.8rem;
    }
    
    blockquote p {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 10px 0;
    }
    
    .book-btn {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    
    .book-btn .btn {
        width: 100%;
        text-align: center;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .chapter {
        grid-template-columns: 1fr;
    }
    
    .chapter-image::before {
        display: none;
    }
    
    .journey-item {
        grid-template-columns: 1fr;
    }
    
    .journey-item:nth-child(even) .journey-image {
        order: -1;
    }
    
    .booking-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        margin: 30px 0 0;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-methods {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    blockquote p {
        font-size: 1.8rem;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-item i {
        margin-bottom: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 15px;
    }
    
    .newsletter-form .btn {
        border-radius: 30px;
        width: 100%;
    }
}

/* Language-specific styles */
html[lang="en"] [data-de-only],
html[lang="en"] [data-de]:not([data-en]) {
    display: none !important;
}

html[lang="de"] [data-en-only],
html[lang="de"] [data-en]:not([data-de]) {
    display: none !important;
}
</pre></body></html>