/* About/Über mich Seiten-spezifische Styles */

.about-header {
    text-align: center;
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-header h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-header .subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.about-text h2 {
    color: #1f2937;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.intro-section,
.motivation-section,
.expertise-section,
.service-section,
.contact-section {
    margin-bottom: 2.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.feature h3 {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.contact-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-sidebar {
    position: sticky;
    top: 2rem;
}

.profile-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.profile-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.profile-info h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.profile-info .title {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile-info .birth-year {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.contact-info,
.specialties {
    margin-bottom: 1.5rem;
}

.contact-info h4,
.specialties h4 {
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
}

.specialties ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialties li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.specialties li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.specialties li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-header .subtitle {
        font-size: 1.1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .contact-cta {
        flex-direction: column;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
    
    .about-sidebar {
        position: static;
    }
}

@media (max-width: 480px) {
    .about-header {
        padding: 2rem 0 1rem;
    }
    
    .about-header h1 {
        font-size: 1.8rem;
    }
    
    .about-content {
        padding: 2rem 0;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .profile-card {
        padding: 1rem;
    }
}

