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

.ad-disclosure {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #fafafa;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    width: fit-content;
}

.cta-primary:hover {
    background-color: #1e4620;
}

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

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

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

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

.intro-image {
    flex: 0 0 45%;
    background-color: #f0f0f0;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.services-showcase {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    min-width: 320px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin: 0 25px 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 25px 20px;
}

.btn-select {
    margin: 0 25px 25px;
    padding: 14px 30px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #1e4620;
}

.form-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.form-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.form-left-content {
    flex: 0 0 40%;
}

.form-left-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-left-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.selected-service-display {
    background-color: #f5f5f5;
    padding: 25px;
    margin-top: 30px;
}

.service-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.service-price {
    font-size: 24px;
    color: #2c5f2d;
    font-weight: 700;
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
    background-color: #ffffff;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.process-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 15px;
}

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

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

.testimonials-section {
    padding: 80px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
}

.testimonial-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial {
    flex: 1;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #252525;
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c5f2d;
    padding: 20px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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 {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.cookie-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1e4620;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #333;
}

.btn-reject:hover {
    background-color: #d0d0d0;
}

.page-header {
    background-color: #f5f5f5;
    padding: 80px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

.about-text-primary {
    flex: 1;
}

.about-text-primary h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.about-text-primary p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image-primary {
    flex: 0 0 45%;
    background-color: #f0f0f0;
}

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

.philosophy-section {
    background-color: #f9f9f9;
    padding: 80px 40px;
}

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

.philosophy-image {
    flex: 0 0 40%;
    background-color: #e8e8e8;
}

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

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.philosophy-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-values {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.team-values h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

.expertise-section {
    background-color: #f9f9f9;
    padding: 80px 40px;
}

.expertise-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.expertise-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.expertise-columns {
    display: flex;
    gap: 60px;
}

.expertise-col {
    flex: 1;
}

.expertise-col h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.expertise-col ul {
    list-style: none;
    padding-left: 0;
}

.expertise-col ul li {
    font-size: 16px;
    color: #444;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.expertise-col ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.cta-section-about {
    background-color: #2c5f2d;
    padding: 80px 40px;
    text-align: center;
}

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

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background-color: #ffffff;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: background-color 0.3s, color 0.3s;
}

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

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

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e8e8e8;
}

.service-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-detail-content ul {
    margin: 20px 0 30px 0;
    padding-left: 20px;
}

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

.service-pricing-box {
    background-color: #f5f5f5;
    padding: 20px;
    margin: 25px 0;
    display: inline-block;
}

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

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #1e4620;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: #f0f0f0;
}

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

.pricing-note {
    background-color: #f9f9f9;
    padding: 60px 40px;
}

.note-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.note-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.note-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-main {
    flex: 1;
}

.contact-info-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
}

.contact-info-main h2:first-child {
    margin-top: 0;
}

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

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

.info-block em {
    color: #666;
}

.contact-image-side {
    flex: 0 0 40%;
    background-color: #f0f0f0;
}

.contact-image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.impressum-section {
    background-color: #f9f9f9;
    padding: 60px 40px;
}

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

.impressum-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

.impressum-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.impressum-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #fafafa;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.selected-service-info {
    background-color: #f5f5f5;
    padding: 25px;
    margin-bottom: 50px;
}

.selected-service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
}

.service-display {
    font-size: 22px;
    font-weight: 600;
    color: #2c5f2d;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.steps-list {
    text-align: left;
    margin-bottom: 50px;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    background-color: #2c5f2d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1e4620;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e8e8e8;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.legal-page {
    background-color: #ffffff;
    padding: 60px 40px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
}

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

.legal-container ul {
    margin: 15px 0 15px 25px;
}

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

.legal-container em {
    color: #666;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #444;
}

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

    .intro-wrapper,
    .about-split,
    .philosophy-content,
    .contact-layout,
    .form-container,
    .expertise-columns {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .process-steps {
        flex-direction: column;
    }

    .testimonial-wrapper {
        flex-direction: column;
    }

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

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

    .service-card {
        min-width: 100%;
    }

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

    h2, .section-header-center h2 {
        font-size: 32px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

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