
.section {
    padding: 60px 0;
}
.text-portrait {
    animation: fadeInLeft 1s ease-in-out;
}
.image-portrait {
    animation: fadeInRight 1s ease-in-out;
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-container {
    max-width: 100%;
    text-align: right; /* Align image to the right */
}
