/* ================================
   LAYOUT & ABSCHNITTE
   ================================ */

.content-section {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 0 24px 60px 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
    position: relative;
    z-index: 1;
}

.section-row {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.section-col-text {
    flex: 1 1 340px;
    min-width: 280px;
    max-width: 600px;
}

.section-col-image {
    flex: 1 1 320px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.section-image-stack {
    position: relative;
    width: 320px;
    height: 260px;
}
.section-image-main {
    position: absolute;
    top: 0;
    left: 40px;
    width: 240px;
    height: 240px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    object-fit: cover;
    z-index: 2;
}
.section-image-bg {
    position: absolute;
    top: 30px;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.09);
    object-fit: cover;
    z-index: 1;
    opacity: 0.85;
}

/* ================================
   FEATURE GRID
   ================================ */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
    margin: 40px 0;
    padding: 0;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    color: var(--green100);
}
.feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--green25);
}
.feature-content {
    display: flex;
    flex-direction: column;
}
.feature-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--green100);
}
.feature-desc {
    font-size: 15px;
    color: var(--green100);
}

/* ================================
   KONTAKT ABSCHNITT
   ================================ */
.contact-section {
    width: 100vw;
    background: #f7f8f6;
    padding: 48px 0;
    margin: 60px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-inner {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.contact-text {
    font-size: 20px;
    color: var(--green100);
    font-weight: 500;
}
.contact-btn {
    background: var(--green25);
    color: var(--green100);
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-btn:hover {
    background: var(--green00);
}

/* ================================
   ABSCHNITTS-TITEL & NOTIZEN
   ================================ */
.section-header {
    margin-bottom: 32px;
    text-align: left;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--green100);
    margin-bottom: 8px;
}
.section-subtitle {
    font-size: 14px;
    color: var(--green75);
    margin-bottom: 18px;
    letter-spacing: 1.2px;
    font-weight: 600;
    text-transform: uppercase;
}
.section-note {
    text-align: center;
    margin: 40px 0 0 0;
    font-size: 16px;
    color: var(--green100);
}
.section-note p {
    display: inline-block;
    text-align: left;
    max-width: 600px;
}

@media (max-width: 900px) {
    .content-section {
        max-width: 100vw;
        padding: 0 8px 40px 8px;
    }
    .section-row {
        flex-direction: column;
        gap: 32px;
    }
    .section-col-image, .section-col-text {
        max-width: 100%;
    }
    .section-image-stack {
        width: 100%;
        height: 220px;
    }
    .section-image-main, .section-image-bg {
        position: absolute;
        width: 180px;
        height: 180px;
        left: 30px;
        top: 0;
    }
    .section-image-bg {
        left: 0;
        top: 20px;
    }
}

@media (max-width: 600px) {
    .content-section {
        border-radius: 0;
        box-shadow: none;
        margin: 32px 0 0 0;
        padding: 0 2px 32px 2px;
    }
    .section-title {
        font-size: 22px;
    }
    .features-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .contact-inner {
        flex-direction: column;
        gap: 18px;
    }
}
