/* Angebote Section mit Abstand */
.angebote-section {
    padding: 10rem 1rem; /* Mehr Abstand nach oben */
    text-align: center;
    background-color: #f9f9f9;
}

.angebote-section h1 {
    font-size: 2rem;
    color: #00274d;
    margin-bottom: 2rem;
}


/* Angebote Container */
.angebote-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.angebote-hinweis {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}

/* Card Styles */
.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1rem;
}

.card-content h2 {
    font-size: 1.25rem;
    color: #00274d;
    margin: 0.5rem 0;
}

.card-content p {
    font-size: 1rem;
    color: #555555;
}
