body {
    font-family: 'Poppins', sans-serif;
   background-color: #f9f9f9;
   color: #333;
 
}

h2 {
    font-weight: bold;
    color: #212529;
    margin-bottom: 0;
}

p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

.img-fluid {
    max-height: 200px;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.fade-in {
    opacity: 1;
    transform: scale(1);
}

.text-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.text-section.visible {
    opacity: 1;
    transform: translateY(0);
}