/* About Page Styles */

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.content-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.content-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.content-body {
    padding: 3rem 2rem;
}

.section-title {
    color: #667eea;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

    .back-link:hover {
        background: #f8f9fa;
        transform: translateX(-5px);
    }

.feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
}

.feature-icon {
    color: #667eea;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.team-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}
