body {
    background-color: #f8fafc; /* Ersetzt das harte Weiß durch ein weiches Profi-Graublau */
}

/* Hauptcontainer */
.startseite-container {
    font-family: Arial, sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}

/* Header & Titel */
.startseite-container h1 {
    color: #002d5a;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Das Boxen-Raster */
.offer-grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

/* Einzelne Angebots-Boxen */
.offer-box {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: #fdfdfd;
    border: 1px solid #e1e8ed;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-Effekt: Box hebt sich leicht an */
.offer-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
    border-color: #002d5a;
}

/* Logos & Partner */
.partner-logo-row img {
    transition: filter 0.3s ease;
}

.partner-logo-row img:hover {
    filter: brightness(1.1);
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #002d5a;
    padding: 15px 35px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #ffe066;
    transform: scale(1.05);
    text-decoration: none;
    color: #002d5a;
}

/* Responsive Anpassungen für Mobilgeräte */
@media (max-width: 768px) {
    .startseite-container h1 {
        font-size: 24px;
    }
    
    .offer-box {
        flex: 1 1 100%; /* Boxen nehmen volle Breite ein */
        max-width: 100%;
    }
    
    .partner-logo-row {
        gap: 20px !important;
    }
}