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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #fcd34d;
}

.navigation {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.intro-left,
.intro-right {
    flex: 1;
}

.intro-section .container {
    display: flex;
    gap: 60px;
}

.intro-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-left p,
.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.service-split {
    display: flex;
    margin-bottom: 80px;
    align-items: center;
    gap: 60px;
}

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-select {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 15px;
}

.btn-select:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.cta-content-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-left p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-right {
    flex: 0 0 auto;
}

.cta-right .cta-secondary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-right .cta-secondary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.contact-form-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.form-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-info p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.form-container {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fffbeb;
    border-top: 1px solid #fcd34d;
    border-bottom: 1px solid #fcd34d;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #78350f;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
}

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

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

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-header {
    background-color: var(--bg-light);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.header-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.about-intro,
.experience-section {
    padding: 80px 0;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-split.reverse {
    flex-direction: row-reverse;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.experience-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.experience-split.reverse {
    flex-direction: row-reverse;
}

.experience-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

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

.experience-content {
    flex: 1;
}

.experience-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.experience-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.approach-steps {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-about {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.cta-content-center h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 100px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 12px;
}

.service-detail-content ul {
    margin: 16px 0 24px 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

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

.service-cta {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-info-section {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.impressum-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.contact-map-placeholder {
    flex: 1;
}

.map-box {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.selected-service {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.next-steps-grid {
    display: flex;
    gap: 30px;
    text-align: center;
}

.step-box {
    flex: 1;
    background-color: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    padding: 80px 0;
    background-color: white;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 16px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 24px 20px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .hero-split,
    .service-split,
    .about-split,
    .experience-split,
    .form-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .service-split.reverse,
    .about-split.reverse,
    .experience-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .intro-section .container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

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

    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 20px);
        min-width: 200px;
    }

    .service-detail-image {
        position: relative;
        top: 0;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 40px 20px;
    }

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

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

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

    .cookie-actions {
        justify-content: center;
    }

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

html {
    scroll-behavior: smooth;
}