/* Über uns Hero */
.ueber-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(29, 78, 216, 0.9) 100%), 
                url('ueber-hero.jpg') no-repeat center center;
    background-size: cover;
    color: var(--light-text);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
}

.ueber-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ueber-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.ueber-hero p {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Über uns Intro */
.ueber-intro {
    padding: 5rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.intro-content h2 a:hover {
    color: var(--accent-color);
}

.intro-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intro-image {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.limitless-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.limitless-badge:hover {
    transform: scale(1.1);
}

.limitless-badge img {
    width: 80px;
    height: auto;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header h2 i {
    margin-right: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-member.highlight {
    border: 2px solid var(--accent-color);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.position {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.bio {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.95rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.team-note a:hover {
    text-decoration: underline;
}

/* Philosophie Section */
.philosophie-section {
    padding: 5rem 0;
}

.philosophie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophie-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.philosophie-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.philo-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s;
}

.philosophie-item:hover .philo-icon {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.philosophie-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophie-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* Geschichte Section */
.geschichte-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.geschichte-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.geschichte-content h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.geschichte-content h2 i {
    margin-right: 1rem;
}

.geschichte-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.geschichte-item::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 30px;
    bottom: -30px;
    width: 2px;
    background-color: var(--gray-light);
}

.geschichte-item:last-child::before {
    display: none;
}

.jahr {
    width: 100px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

.ereignis {
    padding-left: 2rem;
    position: relative;
}

.ereignis::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid white;
}

.ereignis h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.ereignis p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* Über uns CTA */
.ueber-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.ueber-cta .container {
    max-width: 800px;
}

.ueber-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ueber-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .limitless-badge {
        width: 80px;
        height: 80px;
        right: -10px;
    }
    
    .limitless-badge img {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .ueber-hero h1 {
        font-size: 2.2rem;
    }
    
    .ueber-hero p {
        font-size: 1.1rem;
    }
    
    .geschichte-item {
        flex-direction: column;
    }
    
    .geschichte-item::before {
        left: 15px;
        top: 50px;
    }
    
    .ereignis {
        padding-left: 1.5rem;
        margin-top: 1rem;
    }
    
    .ereignis::before {
        left: -10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .ueber-hero {
        padding: 5rem 1.5rem;
    }
    
    .ueber-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophie-grid {
        grid-template-columns: 1fr;
    }
}