/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4A574;
    --primary-dark: #B8935F;
    --secondary-color: #8B7355;
    --accent-color: #F5E6D3;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --background-light: #FEFEFE;
    --background-warm: #FBF8F4;
    --border-light: #E5E5E5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --gradient-overlay: linear-gradient(135deg, rgba(212, 165, 116, 0.9) 0%, rgba(139, 115, 85, 0.8) 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--primary-color);
    color: var(--text-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-mobile {
    display: none;
}

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 5rem 20px 0 20px; /* Padding oben hinzugefügt */
    color: var(--text-white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.detail-icon {
    font-size: 1.2rem;
}

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

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--text-dark);
}

.btn-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.btn-primary.hero-size {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.btn-primary.full-width {
    width: 100%;
    padding: 1.25rem;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--background-warm);
}

.problem-section h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.problem-list {
    margin: 2rem 0;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--text-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.problem-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.problem-truth {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--text-white);
}

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

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

.benefit-card {
    background: var(--background-warm);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Location Section */
.location-section {
    padding: 6rem 0;
    background: var(--background-warm);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-text h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.location-subtitle {
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.location-description {
    margin-bottom: 2rem;
}

.location-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--text-white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Neue Raum-Galerie Styles */
.room-gallery {
    margin-top: 2rem;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.room-item {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.room-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

/* Image Gallery */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-grid img:first-child {
    grid-column: 1 / -1;
}

.location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.gallery-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
    color: var(--text-dark);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item.large {
    grid-column: span 2;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--text-white);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--background-warm);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

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

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

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

/* Hero Leader Profile */
.hero-leader-profile {
    position: absolute;
    bottom: 15%;
    right: 5%;
    display: flex;
    flex-direction: column; /* Bild und Text untereinander */
    align-items: center;
    text-align: center;
}

.profile-avatar {
    width: 150px; /* Grösseres Bild */
    height: auto;
    margin-bottom: 1rem;
    /* Entfernt den alten Rahmen und Schatten */
}

.profile-info-box {
    color: var(--text-white);
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Bessere Lesbarkeit */
}

.profile-info-box a {
    color: var(--text-white);
    text-decoration: none;
}

.profile-info-box a:hover {
    text-decoration: underline;
}

/* Leader Section */
.leader-section {
    padding: 6rem 0;
    background: var(--background-warm);
}

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

.leader-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.leader-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Stellt sicher, dass das ganze Bild sichtbar ist */
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.leader-text {
    flex-grow: 1;
}

.leader-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.leader-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.leader-text a:hover {
    text-decoration: underline;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--background-warm);
}

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

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--text-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.early-bird {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-block;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-original {
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.pricing-savings {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features .feature {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Scarcity Section */
.scarcity-section {
    padding: 6rem 0;
    background: var(--text-white);
    text-align: center;
}

.scarcity-content h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.scarcity-status {
    max-width: 500px;
    margin: 2rem auto;
}

.status-bar {
    width: 100%;
    height: 20px;
    background: var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.status-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: width 0.3s ease;
}

.scarcity-reasons {
    max-width: 600px;
    margin: 3rem auto;
    text-align: left;
}

.scarcity-reasons ul {
    list-style: none;
    padding: 0;
}

.scarcity-reasons li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.scarcity-reasons li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.scarcity-warning {
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* Final CTA Section */
.seminar-info-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--background-warm);
    border-radius: 15px;
    border: 1px solid var(--border-light);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-size: 1.05rem;
}

.seminar-info-box p {
    margin-bottom: 1rem;
}

.seminar-info-box p:last-child {
    margin-bottom: 0;
}

.seminar-info-box strong {
    color: var(--text-dark);
    font-weight: 600;
}

.final-cta-section {
    padding: 6rem 0;
    background: var(--background-warm);
    text-align: center;
}

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

.transformation-promise {
    background: var(--text-white);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: var(--shadow);
}

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

.promise-item {
    padding: 1rem;
    background: var(--accent-color);
    border-radius: 10px;
    font-weight: 500;
}

.final-question {
    margin: 3rem 0;
    font-size: 1.2rem;
}

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

.contact-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea,
.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 1.2rem; /* Grösseres Padding */
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1.1rem; /* Grössere Schrift */
    transition: border-color 0.3s ease;
    margin-bottom: 1rem;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: flex-start;
}

.footer-links a {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-quote {
    text-align: right;
    font-style: italic;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--text-white);
    margin: 5% auto;
    padding: 3.5rem; /* Mehr Innenabstand */
    border-radius: 20px;
    width: 90%;
    max-width: 700px; /* Breiteres Modal */
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-hover);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

/* Booking Form */
.booking-form {
    margin-top: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.booking-type-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-option {
    display: block;
    cursor: pointer;
}

.booking-option input[type="radio"] {
    display: none;
}

.option-content {
    padding: 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.booking-option input[type="radio"]:checked + .option-content {
    border-color: var(--primary-color);
    background: var(--accent-color);
}

.option-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: normal;
}

.booking-summary {
    background: var(--background-warm);
    padding: 2rem;
    border-radius: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.summary-note {
    color: var(--text-light);
    font-style: italic;
}

/* Success Modal */
.success-content {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-details {
        display: none; /* Verstecke oberste Zeile im Hero */
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .room-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-leader-profile {
        display: none;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .leader-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .leader-image {
        margin-bottom: 1rem;
    }

    .leader-text {
        order: 2; /* Text comes after the image */
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.early-bird {
        transform: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-quote {
        text-align: center;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
    }
    
    .booking-type-selection {
        gap: 0.5rem;
    }
    
    .btn-primary.hero-size {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .problem-section .container {
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .room-item img {
        height: 160px;
    }

    .room-caption {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Info-Meeting Section */
.info-meeting-section {
    padding: 5rem 0;
    background: var(--section-bg);
}

.info-meeting-section h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.info-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.info-meeting-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dates-selection {
    margin-bottom: 2rem;
}

.dates-title {
    font-size: 1.3em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.date-option {
    background: #f9f7f5;
    border: 2px solid #e0dcd8;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.date-option:hover {
    background: #f5f1ed;
    border-color: var(--primary-color);
}

.date-option.selected {
    background: #fff9e6;
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.date-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
}

.date-icon {
    font-size: 24px;
    margin-right: 1rem;
}

.date-text {
    flex: 1;
    font-size: 1.1em;
    color: var(--text-dark);
    cursor: pointer;
}

.info-meeting-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-meeting-form .form-group {
    display: flex;
    flex-direction: column;
}

.info-meeting-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1em;
}

.info-meeting-form input[type="text"],
.info-meeting-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0dcd8;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fefefe;
}

.info-meeting-form input[type="text"]:focus,
.info-meeting-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.info-meeting-form input::placeholder {
    color: #b0a59a;
    font-style: italic;
}

.btn-primary.info-submit {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.info-benefit-box {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 8px;
}

.info-benefit-box h3 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.info-benefit-box p {
    color: #1b5e20;
    font-size: 1.05em;
    margin: 0;
}

.info-success-message {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    color: #2e7d32;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1.5rem;
}

.info-error-message {
    background: #ffebee;
    border: 2px solid #f44336;
    color: #c62828;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1.5rem;
}

/* Responsive Info-Meeting */
@media (max-width: 768px) {
    .info-meeting-form-container {
        padding: 2rem;
    }
    
    .info-meeting-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .date-option {
        padding: 0.75rem;
    }
    
    .date-text {
        font-size: 1rem;
    }
}
