* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.main-nav a:hover {
    color: #2d3748;
}

.hero-section {
    height: 600px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #2c5282;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(45, 55, 72, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 40px;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.intro-section {
    background-color: #f7fafc;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a365d;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.problem-section {
    background-color: #ffffff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a365d;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.split-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

.problem-list {
    list-style: none;
    margin: 24px 0;
}

.problem-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #2d3748;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4299e1;
    font-size: 24px;
}

.insight-section {
    background-color: #edf2f7;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a365d;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.citation {
    color: #4299e1;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.services-preview {
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a365d;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e0;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2d3748;
}

.service-content p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    background-color: #f7fafc;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a365d;
    text-align: center;
}

.testimonial {
    background-color: #ffffff;
    padding: 32px;
    margin-bottom: 28px;
    border-left: 4px solid #4299e1;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 16px;
    color: #718096;
    font-weight: 600;
}

.form-section {
    background-color: #edf2f7;
}

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

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1a202c;
}

.disclaimer-section {
    background-color: #fffaf0;
    border-top: 1px solid #fbd38d;
    border-bottom: 1px solid #fbd38d;
}

.disclaimer-text {
    font-size: 14px;
    color: #744210;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 40px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.reference-item {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.reference-item a {
    display: inline;
    color: #90cdf4;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    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: 32px;
}

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

.cookie-content a {
    color: #90cdf4;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #38a169;
}

.cookie-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #2d3748;
}

.page-header {
    background-color: #f7fafc;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #718096;
}

.services-detail {
    background-color: #ffffff;
}

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

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

.service-detail-image {
    flex: 0 0 500px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

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

.service-detail-content h2 {
    font-size: 32px;
    color: #1a365d;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    color: #2d3748;
    margin-top: 24px;
    margin-bottom: 16px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a365d;
    margin: 28px 0;
}

.about-story {
    background-color: #ffffff;
}

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

.methodology-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a365d;
}

.methodology-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.values-section {
    background-color: #edf2f7;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-left: 4px solid #4299e1;
}

.value-card h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 16px;
}

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

.team-section {
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a365d;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.contact-info-section {
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 48px;
}

.contact-block h2 {
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 16px;
}

.contact-block p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 12px;
}

.email-display {
    font-weight: 600;
    color: #2d3748;
}

.note {
    font-size: 15px;
    color: #718096;
    font-style: italic;
}

.contact-image {
    flex: 0 0 500px;
    background-color: #e2e8f0;
}

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

.impressum-section {
    background-color: #f7fafc;
}

.impressum-section h2 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 24px;
}

.impressum-section p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
}

.legal-page {
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2d3748;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 20px;
    color: #4a5568;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

.legal-page a {
    color: #4299e1;
    text-decoration: none;
}

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

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

.cookies-table th,
.cookies-table td {
    padding: 12px;
    border: 1px solid #e2e8f0;
    text-align: left;
    font-size: 15px;
}

.cookies-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookies-table td {
    color: #4a5568;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 400px;
}

.thanks-content {
    text-align: center;
    padding: 60px 40px;
}

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

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.back-button {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #4299e1;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #3182ce;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .split-content {
        flex-direction: column;
    }

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

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

    .service-detail-image {
        flex: 1;
        width: 100%;
        height: 300px;
    }

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

    .contact-image {
        flex: 1;
        width: 100%;
        height: 300px;
    }

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

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