﻿:root {
    --primary-color: #4e54c8;
    --secondary-color: #8f94fb;
    --dark-color: #2a2a2a;
}

.about-section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-weight: 700;
        color: var(--dark-color);
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

        .section-header h2:after {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
            left: 0;
            margin: 0 auto;
        }

    .section-header p {
        color: #666;
        font-size: 1.1rem;
        margin-top: 20px;
    }

.about-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .about-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.about-content h3 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.about-content p {
    color: #666;
    text-align: justify;
    line-height: 1.8;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

    .team-member img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid #f1f1f1;
        margin-bottom: 15px;
    }

    .team-member h4 {
        font-weight: 600;
        margin-bottom: 5px;
    }

    .team-member p {
        color: var(--primary-color);
        font-weight: 500;
    }

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: #f1f1f1;
        color: var(--dark-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 5px;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            transform: translateY(-5px);
        }

.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    color: white;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
}

    .stat-item h3 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .stat-item p {
        font-size: 1.2rem;
        opacity: 0.9;
    }
