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

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f7a;
}

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

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

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

.hero-asymmetric {
    padding: 80px 40px 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a5f7a;
    margin-bottom: 25px;
}

.hero-text-block p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    transform: translateY(30px);
}

.hero-image-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    background: #1a5f7a;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

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

.intro-block {
    padding: 100px 40px;
    background: #ffffff;
}

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

.intro-narrow h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

.services-asymmetric {
    padding: 120px 40px;
    background: #f8f9fa;
}

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

.service-card {
    background: #ffffff;
    padding: 50px;
    margin-bottom: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.offset-left {
    margin-left: 0;
    margin-right: 120px;
}

.offset-right {
    margin-left: 120px;
    margin-right: 0;
}

.offset-center {
    margin-left: 60px;
    margin-right: 60px;
}

.service-content h3 {
    font-size: 28px;
    color: #1a5f7a;
    margin-bottom: 20px;
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.select-service {
    background: #1a5f7a;
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.select-service:hover {
    background: #145169;
    transform: translateY(-2px);
}

.testimonial-inline {
    padding: 80px 40px;
    background: #1a5f7a;
    color: #ffffff;
}

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

.testimonial-content blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.approach-split {
    padding: 100px 40px;
    background: #ffffff;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-section-inline {
    padding: 90px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-inline-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

.benefits-stacked {
    padding: 100px 40px;
    background: #f8f9fa;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header h2 {
    font-size: 38px;
    color: #2c3e50;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 calc(50% - 40px);
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.benefit-item h3 {
    font-size: 22px;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.form-section {
    padding: 100px 40px;
    background: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: #1a5f7a;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #145169;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 40px;
    background: #fff3cd;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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: 30px;
}

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

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-header {
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.about-story {
    padding: 100px 40px;
    background: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 60px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

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

.team-section {
    padding: 100px 40px;
    background: #ffffff;
    text-align: center;
}

.team-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #4a5568;
}

.team-stats {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #4a5568;
}

.approach-detail {
    padding: 100px 40px;
    background: #f8f9fa;
}

.approach-detail h2 {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 60px;
}

.approach-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    min-width: 80px;
}

.step h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    padding: 90px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

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

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

.service-detail-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-detail-content ul {
    list-style-position: inside;
    color: #4a5568;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-detail-image {
    flex: 0 0 350px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #1a5f7a;
}

.faq-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-section {
    padding: 60px 40px;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info,
.impressum-info {
    flex: 1;
}

.contact-info h2,
.impressum-info h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

.info-block h3 {
    font-size: 20px;
    color: #1a5f7a;
    margin-bottom: 10px;
}

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

.impressum-info p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.impressum-info h3 {
    font-size: 18px;
    color: #1a5f7a;
    margin-top: 25px;
    margin-bottom: 10px;
}

.thanks-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

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

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.service-confirmation {
    font-size: 18px;
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-primary {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.next-steps {
    padding: 100px 40px;
    background: #ffffff;
}

.next-steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps-container h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

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

.step-num {
    font-size: 48px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 40px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.legal-container h2 {
    font-size: 28px;
    color: #1a5f7a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .nav-content {
        padding: 0 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-offset {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-image-offset {
        transform: translateY(0);
    }

    .services-container .service-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .approach-container,
    .story-container,
    .service-detail-card {
        flex-direction: column;
    }

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

    .benefits-grid,
    .values-grid,
    .team-stats,
    .steps-grid {
        flex-direction: column;
    }

    .benefit-item {
        flex: 1 1 100%;
    }

    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

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

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

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