/* About Us Section */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
    gap: 30px;
}
.image-section {
    width: 40%;
}
.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.content-section {
    width: 55%;
}
.content-section h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}
.content-section p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}
/*transition*/
.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.active h1,.active p, .active img, .active h2{
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.active img{
    animation-delay: .15s;
}
.active h2{
    animation-delay: .15s;
}
.active h1{
    animation-delay: .3s;
}
.active p{
    animation-delay: .5s;
}
/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .image-section {
        width: 100%;
    }
    .content-section {
        width: 100%;
        padding: 20px;
    }
    .footer-section {
        flex-direction: column;
    }
}
