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

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

.navbar {
    background-color: #1a1a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 800;
}

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

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #c0392b;
}

.hero-image {
    flex: 1;
    background-color: #d3d3d3;
    overflow: hidden;
}

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

.intro-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.services-preview {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.section-header-offset {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding-left: 40px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #1a1a2e;
    font-weight: 800;
}

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

.service-card {
    display: flex;
    margin-bottom: 50px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.service-info {
    flex: 1;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.price {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.select-service {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #2c3e50;
}

.cta-full {
    background-color: #1a1a2e;
    padding: 80px 20px;
    text-align: center;
}

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

.cta-content p {
    font-size: 18px;
    color: #e0e0e0;
}

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

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a2e;
    text-align: center;
    font-weight: 700;
}

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

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

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

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

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

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

.footer {
    background-color: #1a1a2e;
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    text-align: center;
    color: #808080;
    font-size: 13px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #707070;
    margin-top: 15px;
}

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

.cookie-content p {
    color: #ffffff;
    font-size: 15px;
    flex: 1;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

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

.cookie-reject:hover {
    opacity: 0.9;
}

.about-hero {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 800;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.about-image {
    flex: 1;
    background-color: #d3d3d3;
    overflow: hidden;
}

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

.story-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a2e;
    font-weight: 700;
}

.story-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    flex-direction: column;
}

.value-block {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.value-block.dark {
    background-color: #1a1a2e;
}

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

.value-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.value-block.dark h3 {
    color: #ffffff;
}

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

.value-block.dark p {
    color: #e0e0e0;
}

.team-approach {
    padding: 100px 20px;
    background-color: #ffffff;
}

.approach-container {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a2e;
    font-weight: 800;
}

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

.approach-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.approach-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 700;
}

.approach-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.services-header {
    padding: 80px 20px;
    background-color: #1a1a2e;
    text-align: center;
}

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

.header-content p {
    font-size: 20px;
    color: #e0e0e0;
}

.services-detailed {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.detail-left {
    flex: 1;
    background-color: #d3d3d3;
    overflow: hidden;
}

.detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-right {
    flex: 1;
    padding: 60px 50px;
}

.detail-right h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.detail-right ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.detail-right li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.pricing-info {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    margin-right: 10px;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
}

.services-cta {
    padding: 80px 20px;
    background-color: #ffffff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.cta-box h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #4a5568;
}

.cta-link {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #c0392b;
}

.contact-header {
    padding: 80px 20px;
    background-color: #1a1a2e;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 800;
}

.contact-header p {
    font-size: 18px;
    color: #e0e0e0;
}

.contact-info-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.impressum-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.impressum-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.thanks-section {
    padding: 120px 20px;
    background-color: #f8f9fa;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 800;
}

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

#serviceConfirmation {
    font-weight: 600;
    color: #e74c3c;
    font-size: 19px;
    margin: 25px 0;
}

.back-button {
    display: inline-block;
    margin-top: 30px;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #2c3e50;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a2e;
    font-weight: 800;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

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

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

    .hero-content {
        padding: 50px 30px;
    }

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

    .nav-links {
        gap: 20px;
    }

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

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

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

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

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

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

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