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

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #10b981;
    color: white;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: #6b7280;
    color: white;
}

.btn-reject:hover {
    background: #4b5563;
}

/* Header */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2563eb;
}

.ad-label {
    font-size: 12px;
    color: #64748b;
    padding: 6px 12px;
    background: #f1f5f9;
    border-radius: 4px;
    font-weight: 500;
}

/* Hero Modern */
.hero-modern {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #1e293b;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background: white;
}

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

.intro-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}

/* Services Cards */
.services-cards {
    padding: 70px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e293b;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.card-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

.period {
    font-size: 14px;
    color: #64748b;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #1d4ed8;
}

/* Booking Form Section */
.booking-form-section {
    padding: 70px 0;
    background: white;
}

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

.form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 14px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #059669;
}

/* Info Banner */
.info-banner {
    padding: 60px 0;
    background: #eff6ff;
}

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

.banner-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.banner-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}

/* Footer */
.main-footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    color: #f1f5f9;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.7;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #60a5fa;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

/* Page Hero Small */
.page-hero-small {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-hero-small p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 70px 0;
    background: white;
}

.content-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.text-column {
    flex: 1.5;
}

.text-column h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    margin-top: 30px;
}

.text-column h2:first-child {
    margin-top: 0;
}

.text-column p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.image-column {
    flex: 1;
    position: sticky;
    top: 100px;
}

.image-column img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    background-color: #e2e8f0;
    object-fit: cover;
}

/* Values Section */
.values-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e293b;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    width: calc(50% - 15px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2563eb;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* Team Note */
.team-note {
    padding: 70px 0;
    background: white;
}

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

.note-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.note-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}

/* Services Detailed */
.services-detailed {
    padding: 70px 0;
    background: white;
}

.service-detail-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.price-large span {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
}

.detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.detail-image {
    flex: 1;
}

.detail-image img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    background-color: #e2e8f0;
    object-fit: cover;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

/* Additional Info */
.additional-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.additional-info h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e293b;
}

.info-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* Contact Info Section */
.contact-info-section {
    padding: 70px 0;
    background: white;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-details,
.impressum-details {
    flex: 1;
}

.contact-details h2,
.impressum-details h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e293b;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #334155;
}

.info-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.email-display {
    font-family: 'Courier New', monospace;
    color: #2563eb;
    font-size: 15px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.hours-table td {
    padding: 8px 0;
    font-size: 15px;
    color: #475569;
}

.hours-table td:first-child {
    font-weight: 600;
    width: 150px;
}

.hours-note {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

/* Legal Notice */
.legal-notice {
    padding: 60px 0;
    background: #f8f9fa;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1e293b;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 15px;
}

/* Thanks Section */
.thanks-section {
    padding: 80px 0;
    background: white;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.thanks-message {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
}

.selected-service-info {
    background: #eff6ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-info p {
    font-size: 16px;
    color: #475569;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #1e293b;
}

.steps-grid {
    display: flex;
    gap: 25px;
    text-align: center;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.step-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 28px;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.additional-info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.additional-info-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.additional-info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 10px;
}

/* Legal Page Content */
.legal-page-content {
    padding: 70px 0;
    background: white;
}

.legal-page-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-page-content h2:first-child {
    margin-top: 0;
}

.legal-page-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #334155;
}

.legal-page-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #475569;
}

.legal-page-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 15px;
}

.legal-page-content ul,
.legal-page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page-content li {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 8px;
}

.legal-page-content strong {
    font-weight: 700;
    color: #334155;
}

.last-updated {
    margin-top: 40px;
    font-style: italic;
    color: #94a3b8;
    font-size: 14px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table thead {
    background: #f1f5f9;
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    border-bottom: 2px solid #e2e8f0;
}

.cookies-table td {
    padding: 12px;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cards-grid {
        justify-content: center;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .content-layout,
    .service-detail-block {
        flex-direction: column;
    }

    .image-column {
        position: static;
    }

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 17px;
    }

    .service-card {
        width: 100%;
        min-width: 0;
    }

    .main-nav {
        gap: 15px;
        font-size: 14px;
    }

    .ad-label {
        display: none;
    }

    .footer-grid {
        flex-direction: column;
    }

    .value-item {
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        height: 350px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-hero-small h1 {
        font-size: 32px;
    }
}