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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

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

.ad-disclosure {
    padding: 0.4rem 0.9rem;
    background-color: #fef3cd;
    border: 1px solid #f0e5a0;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #856404;
    font-weight: 500;
}

.nav-right a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #1a5490;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background-color: #f8fafb;
}

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #d6e4f0;
    overflow: hidden;
}

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

.btn-hero {
    display: inline-block;
    padding: 1rem 2.2rem;
    background-color: #1a5490;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.btn-hero:hover {
    background-color: #134073;
    transform: translateY(-2px);
}

.intro-section {
    padding: 5rem 7%;
    background-color: #ffffff;
}

.intro-split {
    display: flex;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.intro-left p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.intro-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.intro-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 7%;
    background-color: #f8fafb;
}

.services-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.services-header-left h2 {
    font-size: 2.3rem;
    color: #1a5490;
    font-weight: 700;
}

.services-header-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    max-width: 380px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.service-image {
    flex: 1;
    background-color: #d6e4f0;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.6rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-info p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    color: #1a5490;
    font-weight: 700;
    margin-top: auto;
}

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

.form-section {
    padding: 5rem 7%;
    background-color: #ffffff;
}

.form-split {
    display: flex;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-left p {
    font-size: 1.05rem;
    color: #5a6c7d;
}

.form-right {
    flex: 1;
}

.consultation-form {
    background-color: #f8fafb;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d9e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

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

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

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

.why-section {
    padding: 5rem 7%;
    background-color: #f8fafb;
}

.why-split {
    display: flex;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.why-left {
    flex: 1;
    background-color: #d6e4f0;
    border-radius: 8px;
    overflow: hidden;
}

.why-left img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.why-right {
    flex: 1;
}

.why-right h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.footer-split {
    background-color: #1a2a3a;
    color: #c8d4e0;
    padding: 3.5rem 7% 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 2.5rem;
    flex-wrap: wrap;
}

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

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

.footer-column p,
.footer-column ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #c8d4e0;
}

.footer-column ul li a {
    color: #c8d4e0;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #a0b1c2;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #7fb3e8;
    text-decoration: underline;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-primary:hover {
    background-color: #134073;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.about-content {
    padding: 5rem 7%;
}

.content-split {
    display: flex;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    align-items: center;
}

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

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.content-left p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.content-right {
    flex: 1;
    background-color: #d6e4f0;
    border-radius: 8px;
    overflow: hidden;
}

.content-right img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.content-right h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.content-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 7%;
    background-color: #f8fafb;
}

.values-section h2 {
    text-align: center;
    font-size: 2.3rem;
    color: #1a5490;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 240px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.4rem;
    color: #1a5490;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.cta-section-split {
    padding: 5rem 7%;
    background-color: #1a5490;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
}

.cta-right {
    flex: 0 0 auto;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a5490;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: #f0f4f8;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 5rem 7%;
}

.service-detail-split {
    display: flex;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
    align-items: center;
}

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

.detail-left {
    flex: 1;
    background-color: #d6e4f0;
    border-radius: 8px;
    overflow: hidden;
}

.detail-left img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.detail-left h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.detail-left p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.detail-right {
    flex: 1;
}

.detail-right h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.detail-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    font-size: 1.8rem;
    color: #1a5490;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background-color: #e8f2fb;
    border-radius: 6px;
}

.service-includes {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
}

.service-includes li {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #1a5490;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-service:hover {
    background-color: #134073;
    transform: translateY(-2px);
}

.process-section {
    padding: 5rem 7%;
    background-color: #f8fafb;
}

.process-section h2 {
    text-align: center;
    font-size: 2.3rem;
    color: #1a5490;
    margin-bottom: 3rem;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 240px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-size: 2.5rem;
    color: #1a5490;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step-item h3 {
    font-size: 1.4rem;
    color: #1a5490;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-content {
    padding: 5rem 7%;
}

.contact-split {
    display: flex;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-info .note {
    font-size: 0.9rem;
    color: #7a8c9e;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-right {
    flex: 1;
}

.contact-right h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.contact-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.impressum-section {
    padding: 3rem 7% 5rem;
}

.impressum-section h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.impressum-content h3 {
    font-size: 1.4rem;
    color: #1a5490;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.impressum-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 7%;
    background-color: #f8fafb;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.thanks-content h1 {
    font-size: 2.2rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e8f2fb;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #1a5490;
    font-weight: 600;
}

.next-steps {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.next-info {
    padding: 5rem 7%;
    background-color: #ffffff;
}

.next-info h2 {
    text-align: center;
    font-size: 2.3rem;
    color: #1a5490;
    margin-bottom: 3rem;
    font-weight: 700;
}

.info-steps {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-step {
    flex: 1;
    min-width: 240px;
    background-color: #f8fafb;
    padding: 2rem;
    border-radius: 8px;
}

.info-step h3 {
    font-size: 1.3rem;
    color: #1a5490;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.info-step p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.legal-content {
    padding: 5rem 7%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 2rem;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a5490;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #1a5490;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.6rem;
    line-height: 1.7;
    list-style: disc;
}

.legal-content a {
    color: #1a5490;
    text-decoration: underline;
}

.update-date {
    margin-top: 3rem;
    font-style: italic;
    color: #7a8c9e;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background-color: #f8fafb;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: #1a5490;
    border-bottom: 2px solid #d1d9e0;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e8ecef;
    color: #5a6c7d;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .form-split,
    .why-split,
    .content-split,
    .service-detail-split,
    .contact-split,
    .services-header-split,
    .cta-section-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right {
        min-height: 50vh;
    }

    .nav-right {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .values-grid,
    .process-steps,
    .info-steps {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .nav-split {
        padding: 1rem 4%;
    }

    .hero-left,
    .intro-section,
    .services-preview,
    .form-section,
    .why-section,
    .about-content,
    .services-detailed,
    .process-section,
    .contact-content,
    .thanks-section,
    .next-info,
    .legal-content {
        padding: 3rem 4%;
    }

    .footer-split {
        padding: 2.5rem 4% 1.5rem;
    }

    .hero-left h1,
    .services-header-left h2 {
        font-size: 1.7rem;
    }

    .thanks-content {
        padding: 2.5rem 1.5rem;
    }

    .thanks-content h1 {
        font-size: 1.8rem;
    }
}
