* {
    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: #333;
    background-color: #fff;
}

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

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin: 0 20px;
}

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

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

.main-nav a:hover {
    color: #0066cc;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.btn-hero {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-hero:hover {
    background-color: #0052a3;
}

.btn-primary {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 14px 28px;
    text-decoration: none;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #0066cc;
    color: #0066cc;
}

.intro-section,
.approach-section {
    padding: 100px 0;
}

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

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

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

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.content-left h2,
.content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-left p,
.content-right p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.benefit-list {
    list-style: none;
    margin-top: 24px;
}

.benefit-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.services-overview {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 27px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 24px 24px;
}

.form-section {
    padding: 100px 0;
    background-color: #fff;
}

.trust-indicators {
    margin-top: 40px;
}

.trust-item {
    margin-bottom: 24px;
}

.trust-item strong {
    font-size: 18px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 15px;
    color: #666;
}

.consultation-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    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: #0066cc;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.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;
    margin: 0;
    font-size: 14px;
}

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

.page-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-detail-item {
    margin-bottom: 100px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 16px 0 24px;
}

.content-right h3,
.content-left h3 {
    font-size: 22px;
    margin: 24px 0 16px;
    color: #1a1a1a;
}

.content-right ul,
.content-left ul {
    list-style: none;
    margin-top: 16px;
}

.content-right ul li,
.content-left ul li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.content-right ul li:before,
.content-left ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 20px;
}

.cta-section {
    padding: 100px 0;
    background-color: #0066cc;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-section .btn-hero {
    background-color: #fff;
    color: #0066cc;
}

.cta-section .btn-hero:hover {
    background-color: #f0f0f0;
}

.about-intro,
.methodology-section,
.expertise-section {
    padding: 100px 0;
}

.methodology-section {
    background-color: #f8f9fa;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
    margin-top: 24px;
}

.process-list li {
    counter-increment: process-counter;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.process-list li:before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.values-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.value-card {
    flex: 0 0 calc(50% - 20px);
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.results-section {
    padding: 100px 0;
}

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

.result-item {
    flex: 1;
    text-align: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.result-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 16px;
}

.result-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.contact-section {
    padding: 100px 0;
}

.contact-info {
    margin-top: 24px;
}

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

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.impressum-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.impressum-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #333;
}

.impressum-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.impressum-content a {
    color: #0066cc;
    text-decoration: none;
}

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

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.service-confirmation {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #333;
}

.next-steps {
    text-align: left;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.additional-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.info-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

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

.legal-text h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-text h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #333;
}

.legal-text h4 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #333;
}

.legal-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-text ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-text ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

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

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        flex: 0 0 calc(50% - 20px);
    }

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

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

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

    .info-cards {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
    }

    .ad-notice {
        flex: 1 0 100%;
        order: 3;
        text-align: center;
        margin: 10px 0 0 0;
    }

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

    .hero-left {
        padding: 60px 30px;
    }

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

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

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

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