/* =========================================
   ABOUT US PAGE
   ========================================= */

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

/* Hero Section */
.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.about-hero p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 4rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.team-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    flex: 1;
    max-width: 350px;
    text-align: center;
    border-top: 4px solid #0d47a1;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background-color: #6a92c7;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.team-card h4 {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 0.3rem;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    color: #0d47a1;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Social Media Section */
.social-section {
    text-align: center;
}

.social-section p {
    color: #4b5563;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Brand Colors for Socials */
.facebook { background-color: #1877F2; }
.twitter { background-color: #000000; }
.github { background-color: #333333; }