/* ==========================================================================
   HELP - ABOUT
   ========================================================================== */

.about-page {
    padding: 6rem 10%;
    background: var(--bg-body);
    min-height: 100vh;
}

.about-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-top: 1rem;
    letter-spacing: -2px;
}

.about-section {
    padding: 4rem;
    border-radius: 40px;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.staff-redirect {
    text-align: center;
    padding: 3.5rem;
    border-radius: 35px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(239, 246, 255, 0.9));
    border: 1px solid var(--accent);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.05);
    transition: transform 0.3s ease;
}

.staff-redirect:hover {
    transform: scale(1.02);
}

.staff-redirect h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.staff-redirect p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.feature-box {
    padding: 2.5rem;
    text-align: center;
    border-radius: 30px;
}

.feature-box i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

/* Milestone Liste */
.milestone-list {
    list-style: none;
    margin-top: 1rem;
}

.milestone-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--text-main);
}

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

.milestone-list li strong {
    color: var(--accent);
    margin-right: 10px;
}

.section-content h2 i {
    margin-right: 15px;
    color: var(--accent);
    font-size: 1.6rem;
}


@media (max-width: 768px) {
    .about-page { padding: 4rem 5%; }
    .about-section { padding: 2rem; }
    .about-hero h1 { font-size: 2.5rem; }
}