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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #d4526e;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4526e;
}

.ad-disclosure {
    padding: 5px 12px;
    background-color: #f0f0f0;
    font-size: 12px;
    color: #666;
    border-radius: 4px;
}

.hero-section {
    margin-bottom: 60px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 82, 110, 0.85), rgba(169, 77, 123, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 22px;
    color: #fff;
    max-width: 600px;
}

.intro-cards {
    padding: 60px 0;
    background-color: #fafafa;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.intro-card h3 {
    font-size: 22px;
    color: #d4526e;
    margin-bottom: 15px;
}

.intro-card p {
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f5e6e8;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 12px;
}

.service-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #d4526e;
    margin: 15px 0;
}

.service-select {
    width: 100%;
    padding: 12px;
    background-color: #d4526e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #a94d7b;
}

.booking-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.booking-card h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.booking-intro {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.submit-btn {
    padding: 15px;
    background-color: #d4526e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #a94d7b;
}

.why-choose {
    padding: 80px 0;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #d4526e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
}

.page-hero {
    background: linear-gradient(135deg, #d4526e, #a94d7b);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-story {
    padding: 80px 0;
}

.story-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 350px;
    background-color: #f5e6e8;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.story-text {
    flex: 1;
    min-width: 350px;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #333;
}

.story-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background-color: #fafafa;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    color: #d4526e;
    margin-bottom: 15px;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.team-intro {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.team-member h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
}

.team-role {
    color: #d4526e;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #555;
    line-height: 1.7;
}

.philosophy-section {
    padding: 80px 0;
    background-color: #fafafa;
}

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

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.philosophy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
}

.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, #d4526e, #a94d7b);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #d4526e;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 350px;
    background-color: #f5e6e8;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    min-width: 350px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.price-tag {
    display: inline-block;
    padding: 8px 20px;
    background-color: #d4526e;
    color: #fff;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #333;
}

.service-includes {
    list-style: none;
    margin-bottom: 20px;
}

.service-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4526e;
    font-weight: 700;
}

.duration {
    color: #666;
    font-style: italic;
    margin: 20px 0;
}

.service-book-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #d4526e;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.service-book-btn:hover {
    background-color: #a94d7b;
}

.additional-info {
    padding: 60px 0;
    background-color: #fafafa;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 22px;
    color: #d4526e;
    margin-bottom: 15px;
}

.info-card p {
    color: #555;
    line-height: 1.7;
}

.impressum-content {
    padding: 60px 0;
}

.impressum-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.impressum-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.impressum-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.impressum-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.impressum-section a {
    color: #d4526e;
    text-decoration: none;
}

.impressum-section a:hover {
    text-decoration: underline;
}

.note {
    font-style: italic;
    color: #666;
    font-size: 14px;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #555;
}

.location-info {
    padding: 60px 0;
    background-color: #fafafa;
}

.location-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.location-details {
    max-width: 800px;
}

.location-text h4 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #333;
}

.location-text ul {
    list-style: none;
    padding: 0;
}

.location-text li {
    padding: 8px 0;
    color: #555;
}

.parking-info {
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

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

.booking-summary {
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.booking-summary h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.label {
    font-weight: 600;
    color: #333;
}

.value {
    color: #d4526e;
    font-weight: 600;
}

.next-steps {
    margin: 30px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

.thanks-info {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
}

.thanks-info p {
    color: #555;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background-color: #d4526e;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 82, 110, 0.3);
}

.btn-secondary {
    background-color: #fff;
    color: #d4526e;
    border: 2px solid #d4526e;
}

.btn-secondary:hover {
    background-color: #d4526e;
    color: #fff;
}

.thanks-tips {
    margin-top: 30px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    text-align: left;
}

.thanks-tips h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.thanks-tips p {
    color: #555;
    margin: 0;
}

.thanks-services-preview {
    padding: 60px 0;
    background-color: #fafafa;
}

.thanks-services-preview h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.mini-services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mini-service-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mini-service-card h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.mini-service-card p {
    color: #666;
    margin-bottom: 15px;
}

.mini-price {
    display: block;
    color: #d4526e;
    font-weight: 700;
    font-size: 18px;
}

.legal-content {
    padding: 60px 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    color: #333;
    margin: 40px 0 20px;
}

.legal-text h3 {
    font-size: 22px;
    color: #333;
    margin: 30px 0 15px;
}

.legal-text h4 {
    font-size: 18px;
    color: #333;
    margin: 20px 0 10px;
}

.legal-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-text li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-text a {
    color: #d4526e;
    text-decoration: none;
}

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

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-style: italic;
}

.main-footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4526e;
}

.footer-col p {
    color: #ccc;
    line-height: 1.7;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #d4526e;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 20px;
    background-color: #444;
    border-radius: 6px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #555;
    margin-top: 20px;
    color: #ccc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: #d4526e;
    color: #fff;
}

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: #666;
    color: #fff;
}

.cookie-reject:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .story-layout {
        flex-direction: column;
    }

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

    .booking-card {
        padding: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}