body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

#headers {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    animation: fadeIn 2s;
}

#main-title {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
}

#subtitle {
    margin: 0;
    font-size: 1.8em;
    color: #ffcc00;
    font-weight: 400;
}

#intro, #opportunity, #benefits, #testimonial, #solutions, #cta {
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    animation: fadeInUp 2s;
}

#intro {
    background-color: #f4f4f4;
    text-align: center;
}

#opportunity {
    background-color: #fff;
    text-align: center;
}

#benefits {
    background-color: #eee;
    text-align: center;
}

#testimonial, #solutions {
    background-color: #fff;
    text-align: center;
}

#cta {
    background-color: #333;
    color: white;
    text-align: center;
}

#intro-text, #opportunity-text, #benefits-title, #testimonial-title, #solutions-title, #cta-title {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
}

#benefits-list, #solutions-list, #cta-steps {
    margin-left: 20px;
    text-align: left;
}

#benefits-list {
    list-style-type: disc;
}

#solutions-list {
    list-style-type: square;
}

#cta-steps {
    list-style-type: decimal;
}

/* CSS for Images with Animation and Shape Change */
#img2, #img3, #img4, #img5 {
    width: 50%;
    height: 400px;
    display: block;
    margin: 20px auto;
    transition: border-radius 1s ease;
}

#img1:hover, #img2:hover, #img3:hover, #img4:hover, #img5:hover {
    border-radius: 50%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
