* {
    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: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 31px;
    z-index: 999;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

.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: #1a1a1a;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 60px 70px;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.benefits-section {
    padding: 80px 60px;
    background-color: #ecf0f1;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 35px 30px;
    border-radius: 6px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.services-main {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.services-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.service-item-left,
.service-item-right {
    display: flex;
    margin-bottom: 50px;
    gap: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item-left {
    flex-direction: row;
}

.service-item-right {
    flex-direction: row-reverse;
}

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 6px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.select-service {
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 80px 60px;
    background-color: #2c3e50;
}

.form-container-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-info {
    flex: 1;
    color: #ffffff;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    color: #ecf0f1;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.trust-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

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

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 250px;
}

.disclaimer-section {
    padding: 50px 60px;
    background-color: #ecf0f1;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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: 14px;
    line-height: 1.6;
}

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

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

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

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

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

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #6c7a7b;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-split,
.team-split {
    display: flex;
    min-height: 500px;
}

.about-image,
.team-image {
    flex: 1;
    overflow: hidden;
}

.about-image img,
.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-text,
.team-text {
    flex: 1;
    padding: 60px 70px;
    background-color: #ffffff;
}

.about-text h2,
.team-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.about-text p,
.team-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.values-section,
.approach-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 6px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 600;
}

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

.approach-steps {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 6px;
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 15px;
}

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

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

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

.service-detail-item {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

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

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-detail-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.service-detail-price {
    background-color: #ecf0f1;
    padding: 20px 25px;
    border-radius: 4px;
    margin-bottom: 25px;
    display: inline-block;
}

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

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 6px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #2980b9;
}

.cta-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button-large:hover {
    background-color: #2980b9;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 5px;
}

.contact-map {
    flex: 1;
    overflow: hidden;
    border-radius: 6px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.impressum-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
    max-width: 800px;
    margin: 0 auto;
}

.impressum-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

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

.thanks-container {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

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

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

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
}

.service-confirmation {
    font-size: 18px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 25px;
}

.thanks-info {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

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

.button-primary,
.button-secondary {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.button-primary {
    background-color: #3498db;
    color: #ffffff;
}

.button-primary:hover {
    background-color: #2980b9;
}

.button-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.button-secondary:hover {
    background-color: #d5dbdb;
}

.next-steps {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

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

.step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 6px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.step-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .about-split,
    .team-split,
    .service-item-left,
    .service-item-right,
    .form-container-split,
    .contact-split,
    .service-detail-item {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
    }

    .benefits-grid,
    .trust-grid,
    .values-grid,
    .approach-steps,
    .steps-grid {
        flex-direction: column;
    }

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

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

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