* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.hero {
    height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/img/header-v3.JPEG');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.logo {
    width: 250px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: bold;
    border: 2px double #fdbf00;
}

.hero-button:hover {
    background-color: #fdbf00;
    color: white;
}

.content {
    max-width: 1000px; /* Erhöht von 800px auf 1000px für mehr Platz im Layout */
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
    text-align: left;
}

/* Neuer Container für About und Kontakt im Verhältnis 2:1 */
.about-contact-container {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.about-section {
    flex: 2; /* Nimmt 2/3 des verfügbaren Platzes ein */
    margin-bottom: 0; /* Entfernt den unteren Rand, da wir jetzt den Container-Rand verwenden */
}

.contact-section {
    flex: 1; /* Nimmt 1/3 des verfügbaren Platzes ein */
    margin-bottom: 0; /* Entfernt den unteren Rand, da wir jetzt den Container-Rand verwenden */
    padding: 20px;
    border-radius: 10px;
}

/* Versteckt standardmäßig den mobilen Kontaktbereich */
.mobile-contact-section {
    display: none;
}

.section {
    margin-bottom: 60px;
}

.section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2em;
    text-shadow: 0px 0.5px 1px #fdbf00;
}

.about {
    gap: 40px;
    align-items: start;
}

.about strong {
    color: #fdbf00;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-content: center;
}

.service-item {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 1px 2px #fdbf00;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(253, 191, 0, 0.3);
    cursor: pointer;
}

.contact {
    margin-bottom: 0; /* Geändert von 40px zu 0 */
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.contact-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #34495e;
}

.about p {
    margin-bottom: 15px;
}

.about p:last-child {
    margin-bottom: 0;
}

.about strong {
    color: #fdbf00;
}

/* Optional: Spezielle Hervorhebung für den Philosophie-Abschnitt */
.philosophy-highlight {
    border-left: 3px solid #fdbf00;
    padding-left: 15px;
    margin: 15px 0;
}

/* Responsive Design für mobile Geräte */
@media (max-width: 768px) {
    .about-contact-container {
        flex-direction: column; /* Ändert das Layout auf Mobilgeräten zu einer Spalte */
    }
    
    /* Versteckt den Desktop-Kontaktbereich auf mobilen Geräten */
    .contact-section {
        display: none;
    }
    
    /* Zeigt den mobilen Kontaktbereich an */
    .mobile-contact-section {
        display: block;
        margin-top: 20px;
        padding: 20px;
        background-color: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 1px 2px #fdbf00;
    }
    
    .hero h1 {
        font-size: 2em;
    }
}