* {
    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;
}

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

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

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

.nav-primary {
    display: flex;
    gap: 30px;
}

.nav-primary a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-content-left {
    flex: 1;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-content-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.hero-visual-right {
    flex: 1;
    overflow: hidden;
}

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

.approach-split {
    display: flex;
    align-items: center;
}

.approach-image-left {
    flex: 1;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.approach-text-right {
    flex: 1;
    padding: 60px 80px;
}

.approach-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.approach-text-right p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.services-preview-split {
    display: flex;
    padding: 80px 0;
    gap: 60px;
    background-color: #f8f9fa;
}

.services-intro-left {
    flex: 0 0 400px;
    padding: 0 80px;
}

.services-intro-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.services-intro-left p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.link-underline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    transition: color 0.3s ease;
}

.link-underline:hover {
    color: #2980b9;
}

.services-cards-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 80px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 24px;
    padding: 24px;
}

.service-card img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

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

.btn-card {
    padding: 10px 20px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

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

.values-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.values-content-left {
    flex: 1;
    padding: 0 80px;
}

.values-content-left h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a252f;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

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

.values-visual-right {
    flex: 1;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.portfolio-split {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 80px 0;
}

.portfolio-image-left {
    flex: 1;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.portfolio-text-right {
    flex: 1;
    padding: 60px 80px;
}

.portfolio-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.portfolio-text-right p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-container p {
    font-size: 17px;
    margin-bottom: 32px;
    text-align: center;
    color: #bdc3c7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #95a5a6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 28px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.trust-content-left {
    flex: 1;
    padding: 0 80px;
}

.trust-content-left h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a252f;
}

.testimonial-block {
    margin-bottom: 32px;
}

.testimonial-block p {
    font-size: 17px;
    color: #5a6c7d;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 15px;
    color: #95a5a6;
    font-weight: 600;
}

.trust-visual-right {
    flex: 1;
    overflow: hidden;
    background-color: #e9ecef;
}

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

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

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

.disclaimer-content p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.8;
}

.footer-main {
    background-color: #1a252f;
    color: #bdc3c7;
    padding: 60px 80px 20px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-cookie-accept {
    padding: 10px 24px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

.btn-cookie-reject {
    padding: 10px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-cookie-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.cookie-link {
    color: #3498db;
    text-decoration: underline;
    font-size: 14px;
}

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

.page-hero h1 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-detailed {
    padding: 60px 0;
}

.service-item-split {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-visual {
    flex: 1;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.service-description {
    flex: 1;
    padding: 60px 80px;
}

.service-description h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-description p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 24px;
}

.price-label {
    font-size: 15px;
    color: #5a6c7d;
    margin-right: 8px;
}

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

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

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
}

.cta-services p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.about-content-split {
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.about-text-left {
    flex: 1;
    padding: 0 80px;
}

.about-text-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.about-text-left p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

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

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a252f;
}

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

.value-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 300px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.value-item p {
    font-size: 16px;
    color: #5a6c7d;
}

.team-split {
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.team-image-left {
    flex: 1;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.team-text-right {
    flex: 1;
    padding: 60px 80px;
}

.team-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.team-text-right p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a252f;
}

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

.step-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.step-item p {
    font-size: 15px;
    color: #5a6c7d;
}

.cta-about {
    padding: 80px 80px;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #bdc3c7;
}

.contact-split-section {
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.contact-info-left {
    flex: 1;
    padding: 0 80px;
}

.contact-info-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a252f;
}

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-image-right {
    flex: 1;
    overflow: hidden;
    background-color: #e9ecef;
}

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

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

.impressum-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.impressum-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
}

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

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.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 32px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
}

.thanks-section p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-confirmation {
    margin: 24px 0;
}

.selected-service-info {
    font-size: 16px;
    color: #3498db;
    background-color: #e8f4fc;
    padding: 16px;
    border-radius: 6px;
}

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

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

.legal-intro {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a252f;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.legal-page p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-update {
    margin-top: 40px;
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-primary {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-split,
    .approach-split,
    .services-preview-split,
    .values-split,
    .portfolio-split,
    .trust-split,
    .service-item-split,
    .about-content-split,
    .team-split,
    .contact-split-section {
        flex-direction: column;
    }

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

    .hero-content-left,
    .approach-text-right,
    .services-intro-left,
    .values-content-left,
    .portfolio-text-right,
    .trust-content-left,
    .service-description,
    .about-text-left,
    .team-text-right,
    .contact-info-left {
        padding: 40px 20px;
    }

    .services-cards-right {
        padding: 0 20px 40px;
    }

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

    .service-card img {
        width: 100%;
        height: 200px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 32px;
    }

    .footer-main {
        padding: 40px 20px 20px;
    }

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

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .legal-page {
        padding: 40px 20px;
    }

    .disclaimer-section {
        padding: 40px 20px;
    }
}