/* Allgemeine Einstellungen */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333; /* Standardtextfarbe */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 80px;
}

.welcome-heading {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin: 40px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #3498db;
}

/* Sidebar */
.sidebar {
    background-color: #e9ecef;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Content */
.content {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.content h2 {
    color: #343a40;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.content h3 {
    color: #495057;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Service Buttons */
.service-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.service-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    height: 80px;
    text-align: center;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}

.service-button:hover {
    background-color: #1a242f;
    transform: translateY(-2px);

}

/* Preis-Tabelle */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.price-table th, .price-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.price-table th {
    background-color: #495057;
    color: white;
}

.price-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Kontaktinformationen */
.contact-info {
    margin: 20px 0;
}

/* Upload-Link */
.upload-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #343a40;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.upload-link:hover {
    background-color: #495057;
}

/* Beispielbilder */
.examples img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 20px;
}

/* Services Liste */
.services {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: center;
}

.services li {
    display: inline-block;
    margin: 0 10px;
}

.services a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

.services a:hover {
    text-decoration: underline;
}

/* Boxen für Liste der Vorteile */
.content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 10px;
    font-size: 1em;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .content {
        padding: 15px;
        margin: 10px 0;
    }

    .price-table th, .price-table td {
        padding: 8px;
    }

    .upload-link {
        padding: 8px 15px;
    }

    .services li {
        margin: 0 5px;
    }

    .service-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .service-button {
        width: 80%;
        max-width: none;
        margin-bottom: 10px;

    }
}

.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;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.examples img:first-child {
    flex: 1 1 100%; /* Nimmt die gesamte Breite ein */
    height: auto; /* Beibehaltung des Seitenverhältnisses */
}
.examples img {
    flex: 1 1 calc(50% - 10px); /* Nimmt die Hälfte der Breite abzüglich des Abstands ein */
    height: auto; /* Beibehaltung des Seitenverhältnisses */
}