﻿.about-page {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f8fb;
    padding: 60px 8%;
    color: #333;
}

.about-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    animation: fadeIn 1.2s ease;
}

.about-image {
    flex: 1;
    max-width: 45%;
}

    .about-image img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s ease;
    }

        .about-image img:hover {
            transform: scale(1.02);
        }

.about-text {
    flex: 1;
    max-width: 50%;
}

    .about-text h1 {
        font-size: 2.8rem;
        color: #004aad;
        margin-bottom: 10px;
    }

    .about-text h2 {
        font-size: 1.8rem;
        color: #222;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

.highlights {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

    .highlights li {
        background-color: #e6f0ff;
        margin: 8px 0;
        padding: 10px 15px;
        border-left: 4px solid #004aad;
        border-radius: 5px;
        font-size: 1.05rem;
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-in 0.6s forwards;
}

.slide-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.8s ease-in-out 0.3s forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        max-width: 100%;
    }

        .about-text h1 {
            font-size: 2.2rem;
        }

        .about-text h2 {
            font-size: 1.4rem;
        }
}
