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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn,
.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject,
.btn-reject {
    background-color: #718096;
    color: #ffffff;
}

.cookie-btn.reject:hover,
.btn-reject:hover {
    background-color: #4a5568;
}

.header-asymmetric {
    padding: 1rem 0;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #2b6cb0;
}

.ad-disclosure {
    padding: 0.5rem 1rem;
    background-color: #fef5e7;
    border: 1px solid: #f6e05e;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #744210;
}

main {
    min-height: 60vh;
}

.hero-asymmetric {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 300px;
    color: #ffffff;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image-offset {
    flex: 1;
    min-width: 400px;
    position: relative;
    transform: translateY(20px);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.cta-primary,
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f6ad55;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: #ed8936;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 173, 85, 0.4);
}

.intro-irregular {
    padding: 6rem 0;
    background-color: #f7fafc;
}

.intro-content-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left-narrow {
    flex: 0.8;
}

.intro-right-wide {
    flex: 1.2;
}

.intro-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.intro-irregular p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.intro-right-wide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 2rem;
    object-fit: cover;
}

.services-cascade {
    padding: 6rem 0;
    background-color: #ffffff;
}

.section-title-offset {
    max-width: 1400px;
    margin: 0 auto 3rem 2rem;
    font-size: 2.5rem;
    color: #2d3748;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 400px;
}

.card-medium {
    flex: 1 1 calc(45% - 1rem);
    min-width: 350px;
}

.card-small {
    flex: 1 1 calc(30% - 1rem);
    min-width: 300px;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.service-info p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    flex-grow: 1;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.75rem 1.5rem;
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.approach-diagonal {
    padding: 6rem 0;
    background: linear-gradient(to right, #edf2f7 0%, #e2e8f0 100%);
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.approach-visual {
    flex: 1;
    min-width: 400px;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.approach-text {
    flex: 1;
    min-width: 400px;
}

.approach-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.approach-text a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
}

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

.testimonials-scattered {
    padding: 6rem 0;
    background-color: #2d3748;
    color: #ffffff;
}

.testimonials-scattered h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.testimonials-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #4a5568;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.testimonial-offset-1 {
    transform: translateY(-20px);
}

.testimonial-offset-2 {
    transform: translateY(20px);
}

.testimonial-offset-3 {
    transform: translateY(-10px);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-weight: 600;
    font-style: normal;
    color: #90cdf4;
}

.form-section-irregular {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-container-offset h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.form-container-offset > p {
    margin-bottom: 2rem;
    color: #4a5568;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #38a169;
}

.disclaimer-section {
    padding: 4rem 0;
    background-color: #fef5e7;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 4px solid #ed8936;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #744210;
}

.disclaimer-content p {
    color: #744210;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #a0aec0;
    line-height: 1.6;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #90cdf4;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 0.5rem;
    color: #a0aec0;
}

.footer-references a {
    color: #90cdf4;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #718096;
}

.contact-hero,
.thanks-hero,
.legal-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero h1,
.thanks-hero h1,
.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.contact-card p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    min-width: 400px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.impressum-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impressum-content h2,
.impressum-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.impressum-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-info p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.thanks-next-steps ol {
    padding-left: 2rem;
}

.thanks-next-steps li {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e2e8f0;
    color: #2d3748;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-content th,
.legal-content td {
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    text-align: left;
}

.legal-content th {
    background-color: #edf2f7;
    font-weight: 600;
    color: #2d3748;
}

.legal-content td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

    .intro-content-split,
    .approach-container,
    .contact-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        min-width: 100%;
    }

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