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

:root {
    --primary-color: #2c5f4d;
    --secondary-color: #7a9d8f;
    --accent-color: #c4a7a0;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f7f5;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4CAF50;
}

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(--background-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    background-color: var(--background-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 37px;
    z-index: 999;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
}

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

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 520px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background-color: #1e4436;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
    cursor: pointer;
}

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

.intro-section {
    padding: 100px 40px;
    background-color: var(--background-white);
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: var(--accent-color);
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-preview {
    padding: 100px 40px;
    background-color: var(--background-light);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: var(--background-white);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 24px 20px;
    flex-grow: 1;
}

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

.cta-centered {
    text-align: center;
    margin-top: 48px;
}

.value-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 100px 40px;
}

.value-text {
    flex: 1;
    padding-right: 60px;
}

.value-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.value-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 28px;
}

.value-list {
    list-style: none;
    margin-top: 32px;
}

.value-list li {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.value-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.value-image {
    flex: 1;
    background-color: var(--accent-color);
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 60px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-container > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 36px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--background-white);
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    word-break: break-word;
}

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

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

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--background-white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: var(--background-light);
}

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

.page-header h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.feature-list {
    list-style: none;
    margin: 28px 0;
}

.feature-list li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-box {
    margin-top: 28px;
    padding: 20px 24px;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 16px;
}

.price-label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.cta-section-services {
    text-align: center;
    padding: 80px 40px;
    background-color: var(--background-light);
}

.cta-section-services h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-section-services p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.about-intro {
    padding: 80px 40px;
    background-color: var(--background-white);
}

.about-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.about-image {
    flex: 1;
    background-color: var(--accent-color);
}

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

.philosophy-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

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

.philosophy-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 40px;
    background-color: var(--background-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.team-section {
    padding: 80px 40px;
    background-color: var(--background-white);
}

.team-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-content-split.reverse {
    flex-direction: row-reverse;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.team-image {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.values-section {
    padding: 100px 40px;
    background-color: var(--background-light);
}

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

.values-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.values-image {
    flex: 1;
    background-color: var(--accent-color);
}

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

.values-text {
    flex: 1;
}

.values-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.cta-about {
    text-align: center;
    padding: 80px 40px;
    background-color: var(--background-white);
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 80px;
}

.contact-info-box {
    flex: 1;
}

.contact-info-box h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 36px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-image-section {
    flex: 1;
    background-color: var(--accent-color);
}

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

.impressum-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: var(--background-light);
}

.impressum-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.impressum-content strong {
    font-weight: 600;
}

.thanks-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-lead {
    font-size: 20px;
    color: var(--success-color);
    margin-bottom: 32px;
    font-weight: 600;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.legal-update {
    margin-top: 48px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 40px;
    }

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

    .intro-wrapper,
    .about-content-split,
    .team-content-split,
    .values-split,
    .contact-main,
    .value-split,
    .service-detail-item {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-item.reverse,
    .about-content-split.reverse,
    .team-content-split.reverse {
        flex-direction: column;
    }

    .value-text {
        padding-right: 0;
    }

    .services-grid,
    .philosophy-grid {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-container {
        padding: 16px 24px;
    }

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

    .hero-lead {
        font-size: 18px;
    }

    .section-header-centered h2,
    .philosophy-section h2,
    .values-section h2 {
        font-size: 32px;
    }

    .intro-text h2,
    .value-text h2,
    .about-text h2,
    .team-text h2,
    .cta-about h2,
    .cta-section-services h2 {
        font-size: 30px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .form-container {
        padding: 40px 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }

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

    .legal-page h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .intro-section,
    .services-preview,
    .form-section,
    .page-header,
    .about-intro,
    .philosophy-section,
    .team-section,
    .values-section,
    .cta-about,
    .contact-main,
    .impressum-section,
    .thanks-section,
    .legal-page,
    .cta-section-services {
        padding: 40px 20px;
    }

    .nav-container {
        padding: 16px 20px;
    }

    .form-container {
        padding: 32px 20px;
    }
}
