/* Hauptbereich zwischen Header und Footer */
.main-content {
    position: absolute;
    top: 0;
    bottom: 56px;
    left: 0;
    right: 0;
    overflow-y: auto;
    background: #bcf3ad;
}

/* Hauptcontainer */
.page-wrapper {
    position: relative;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1400px;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Inhaltssektion */
.body-main-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Bild volle Breite */
.body-box-image-full {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.body-box-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Textbox volle Breite */
.body-box-text-full {
    background: transparent;
    padding: 2rem;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    text-align: left;
    color: #222;
}

/* Buttons */
.body-box-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid transparent;
    background: transparent;
}
.keyword-btn {
    display: inline-block;
    padding: 10px 16px;
    background-color: #22c55e;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}
.keyword-btn:hover {
    background-color: #15803d;
}
.button-section-heading {
    width: 100%;
    text-align: center;
    color: #1976d2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Zwei Spalten */
.body-row-two {
    display: flex;
    gap: 1.5rem;
}
.body-box-text {
    flex: 1;
    padding: 1.5rem;
    background: transparent;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #222;
    border: 2px solid transparent;
}

/* Partner-Boxen */
.body-box-partners {
    background: transparent;
    padding: 1.5rem;
    text-align: center;
}
.body-box-partners h2 {
    color: #1976d2;
    margin-bottom: 1rem;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    align-items: center;
    justify-items: center;
}
.partner-grid img {
    max-width: 160px;
    max-height: 100px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
    .body-row-two {
        flex-direction: column;
    }
    .body-box-image-full {
        height: 200px;
    }
}
