.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: left;
    margin-top: 30px;
}
.small-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: background-color 0.3s;
}
.small-button:hover {
    background-color: #3570b2;
}
.content-section {
    margin-bottom: 30px;  /* Abstand zwischen Content-Abschnitten */
}
.course-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.course-card {
    background-color: #f0f8ff; /* Hellerer Blauton für den Hintergrund */
    border: 2px solid #4a90e2;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.course-card h4 {
    color: #4a90e2;
    margin-top: 0;
    margin-bottom: 15px;
}

.course-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.course-card li {
    margin-bottom: 10px;
}

.summer-special {
    background-color: #fffaf0; /* Heller, sommerlicher Hintergrund */
    border: 2px solid #ffd700; /* Goldene Umrandung für einen sommerlichen Touch */
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
}

.summer-special h3 {
    color: #ff6347; /* Leuchtendes Orange für die Überschrift */
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.summer-content {
    text-align: center;
}

.summer-content ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.summer-content li {
    margin-bottom: 10px;
    color: #4a90e2; /* Verwendung der bestehenden blauen Farbe */
}

.summer-content p {
    margin-bottom: 15px;
}

.summer-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff6347; /* Passendes Orange zum Titel */
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.summer-button:hover {
    background-color: #ff4500;
    transform: scale(1.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.service-card {
    background-color: #f0f8ff; /* Hellerer Blauton für den Hintergrund */
    border: 2px solid #4a90e2;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card h4 {
    color: #4a90e2;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.service-card p {
    margin-bottom: 0;
    font-size: 0.9em;
    line-height: 1.5;
}

.examples {
display: flex;
justify-content: space-between;
gap: 20px;
margin-top: 20px;
}

.examples img {
flex: 1;
max-width: calc(33.33% - 14px);
height: auto;
object-fit: cover;
}
.info-card {
background-color: #f0f8ff;
border: 2px solid #4a90e2;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
margin-bottom: 20px;
}

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

.info-card h3 {
color: #4a90e2;
margin-top: 0;
margin-bottom: 15px;
font-size: 1.2em;
}

.info-card ol, .info-card ul {
padding-left: 20px;
margin-bottom: 0;
}

.info-card li {
margin-bottom: 10px;
font-size: 0.9em;
line-height: 1.5;
}