/* About Page Styles */

.about-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 50px;
    padding-bottom: 80px;
}

.page-description {
    max-width: 600px;
}

.about-content {
    max-width: 800px;
}

.divider {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.team-card-mini {
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.team-card-mini:hover {
    border-left: 3px solid var(--primary-color);
    background: #f8f9fa;
}

.bg-primary-subtle {
    background-color: rgba(13, 110, 253, 0.1);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4facfe 100%);
}

.cta-content {
    max-width: 600px;
}

.cta-decoration {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
