
    .about-main {
        max-width: 1100px;
        margin: auto;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-section {
        background: rgb(254, 253, 253);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .about-title {
        color: rgb(249, 100, 0);
        text-align: center;
        margin-bottom: 20px;
    }

    .about-text {
        text-align: justify;
        line-height: 1.7;
    }

    .about-team-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
    }

    .about-member-card {
        text-align: center;
        max-width: 250px;
        padding: 10px;
        background: rgb(254, 253, 253); 
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .about-member-card img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgb(249, 100, 0);
        margin-bottom: 15px;
        transition: transform 0.5s ease;
    }

    .about-member-card:hover {
        transform: translateY(-10px); 
        box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
    }

    .about-member-card:hover img {
        transform: scale(1.1); 
    }

    .about-member-card h3 {
        margin: 10px 0 5px;
        color: #333;
    }

    .about-member-card p {
        color: #666;
        font-size: 14px;
    }

    @media (max-width: 768px) {
        .about-team-container {
            flex-direction: column;
            align-items: center;
        }
    }

    .scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out; 
    }

    .scroll-visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }