.content-section {
    opacity: 0; /* Initially hide the content */
    transform: translateY(20px); /* Optional for an animated effect */
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.content-section.loaded {
    opacity: 1; /* Show content on load */
    transform: translateY(0); /* Animate into place */
}
