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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.navigation a:hover,
.navigation a.active {
    color: #8B6F47;
    background-color: rgba(139, 111, 71, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4A574 0%, #8B6F47 100%);
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
}

.hero-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: #8B6F47;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f8f8f8;
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section-alt {
    background-color: #f9f7f4;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    text-align: center;
    color: #8B6F47;
}

.section h3 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
    color: #8B6F47;
}

/* Content Box */
.content-box {
    max-width: 900px;
    margin: 0 auto;
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #555;
    font-weight: 500;
}

.content-box p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-box ul {
    margin: 1.5rem 0 1.5rem 2rem;
    font-size: 1.1rem;
}

.content-box li {
    margin-bottom: 0.75rem;
}

/* Retreat Details */
.retreat-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.detail-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-alt .detail-item {
    background-color: white;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.detail-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Schedule */
.schedule {
    margin: 2rem 0;
}

.day {
    background-color: white;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #8B6F47;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.day-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.day-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.day-text {
    flex: 1;
}

.day h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.day p {
    margin-bottom: 0;
    color: #555;
}

.day ul {
    margin: 1rem 0 0 0;
    list-style: none;
    padding-left: 0;
}

.day li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.day li:last-child {
    border-bottom: none;
}

.daily-rhythm {
    margin-top: 3rem;
    padding: 2rem;
    background-color: rgba(139, 111, 71, 0.05);
    border-radius: 10px;
}

.daily-rhythm h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.daily-rhythm ul {
    list-style: none;
    margin: 0;
}

.daily-rhythm li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.daily-rhythm li:last-child {
    border-bottom: none;
}

/* Testimonial */
.testimonial {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    position: relative;
}

.testimonial blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #D4A574;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial p {
    margin-bottom: 1.5rem;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    color: #8B6F47;
    margin-top: 2rem;
    font-size: 1rem;
}

/* Contact */
.contact-box {
    text-align: center;
    padding: 2rem;
}

.contact-info {
    margin: 2rem 0;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    color: #8B6F47;
    text-decoration: none;
    padding: 1rem 2rem;
    background-color: rgba(139, 111, 71, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.email-link:hover {
    background-color: #8B6F47;
    color: white;
    transform: scale(1.05);
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 20px;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation ul {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .navigation a {
        padding: 0.4rem 0.7rem;
    }
    
    .hero {
        min-height: 90vh;
        padding: 100px 20px 60px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .retreat-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .content-box ul {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
    
    .navigation {
        padding: 0.75rem 0;
    }
    
    .hero {
        padding: 120px 15px 40px;
    }
    
    .section {
        padding: 50px 15px;
    }
    
    .testimonial blockquote::before {
        font-size: 3rem;
        top: -15px;
        left: -5px;
    }
}

/* Services Overview */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8B6F47;
}

.service-item ul {
    margin: 1rem 0 0 1.5rem;
}

.service-item li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Images */
.hero-image {
    max-width: 60%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-image {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offer-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.content-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.content-with-image .content-box {
    flex: 1;
}

.section-image {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.about-text {
    flex: 1;
}

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.gallery-image {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.philosophy-section {
    margin-top: 3rem;
}

.intro-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.intro-with-image .content-box {
    flex: 1;
}

.intro-image {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.service-content {
    padding: 1.5rem;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-item.featured {
    border: 2px solid #8B6F47;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(139, 111, 71, 0.1) 100%);
}

.service-item.featured .service-content {
    position: relative;
}

.service-item.featured .service-content::before {
    content: "★ EMPFOHLEN";
    position: absolute;
    top: -10px;
    right: 15px;
    background: #8B6F47;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.why-choose-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.testimonial-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.topic-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.topic-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.topic-content {
    padding: 1.5rem;
}

.topic-content h3 {
    margin-bottom: 0.5rem;
    color: #8B6F47;
}

.topic-content p {
    color: #666;
    margin: 0;
}

.support-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.retreat-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.highlight-item h3 {
    margin-bottom: 1rem;
    color: #8B6F47;
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.essential-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.essential-category h3 {
    margin-bottom: 1rem;
    color: #8B6F47;
}

.essential-category ul {
    list-style: none;
    padding: 0;
}

.essential-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.essential-category li:last-child {
    border-bottom: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #8B6F47;
    font-size: 1.1rem;
}

.pricing-card {
    display: flex;
    background: linear-gradient(135deg, #D4A574 0%, #8B6F47 100%);
    color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin: 3rem 0;
}

.pricing-content {
    flex: 1;
    padding: 3rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-details {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.pricing-content h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.pricing-content ul {
    list-style: none;
    padding: 0;
}

.pricing-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-content li:last-child {
    border-bottom: none;
}

.pricing-image {
    flex-shrink: 0;
    width: 300px;
    position: relative;
}

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

.booking-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.booking-info h3 {
    margin-bottom: 1rem;
    color: #8B6F47;
}

.booking-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.booking-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
}

.booking-steps {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step h4 {
    margin-bottom: 0.5rem;
    color: #8B6F47;
}

.booking-image {
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.location-link {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(139, 111, 71, 0.1);
    border-radius: 8px;
    border-left: 4px solid #8B6F47;
}

.location-link p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #8B6F47;
}

.location-button {
    display: inline-block;
    padding: 12px 24px;
    background: #8B6F47;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.location-button:hover {
    background: #6B4F37;
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #8B6F47;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: #8B6F47;
}

.tech-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tech-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tech-item h3 {
    margin-bottom: 1rem;
    color: #8B6F47;
}

.tech-item ul {
    list-style: none;
    padding: 0;
}

.tech-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.tech-item li:last-child {
    border-bottom: none;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.therapy-indications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.indication-group {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.indication-group h3 {
    margin-bottom: 1rem;
    color: #8B6F47;
}

.indication-group ul {
    list-style: none;
    padding: 0;
}

.indication-group li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.indication-group li:last-child {
    border-bottom: none;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.method-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.method-item h3 {
    margin-bottom: 1rem;
    color: #8B6F47;
}

.framework-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.framework-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.framework-item h3 {
    margin-bottom: 1rem;
    color: #8B6F47;
}

.framework-item ul {
    list-style: none;
    padding: 0;
}

.framework-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.framework-item li:last-child {
    border-bottom: none;
}

.insurance-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.insurance-info h3 {
    margin-bottom: 1rem;
    color: #8B6F47;
}

.insurance-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.insurance-info ul {
    margin: 1rem 0;
}

.insurance-info li {
    margin-bottom: 0.5rem;
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: #8B6F47;
}

.therapy-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefit h4 {
    margin-bottom: 0.5rem;
    color: #8B6F47;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-image,
    .about-image,
    .offer-image {
        max-width: 100%;
        margin: 1rem 0;
    }
    
    .about-image {
        max-width: 250px;
    }
    
    .services-overview {
        grid-template-columns: 1fr;
    }
    
    .content-with-image,
    .intro-with-image,
    .about-content,
    .testimonial-with-image {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-image,
    .intro-image,
    .testimonial-image {
        max-width: 100%;
        margin: 1rem 0;
    }
    
    .about-gallery {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-image {
        max-width: 100%;
    }
    
    .day-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .day-image {
        max-width: 100%;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item.featured .service-content::before {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .retreat-highlights {
        grid-template-columns: 1fr;
    }

    .essentials-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        flex-direction: column;
    }

    .pricing-image {
        width: 100%;
        height: 250px;
    }

    .booking-content {
        flex-direction: column;
        gap: 2rem;
    }

    .booking-steps {
        flex-direction: column;
    }

    .step {
        min-width: auto;
    }

    .booking-image {
        max-width: 100%;
    }
}
