
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}

.container {
    padding: 20px;
}

/* Title Slide */
.title-slide {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #1e90ff, #32cd32);
    color: white;
    animation: fadeIn 2s ease-in;
}

.title-slide h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

.title-slide p {
    font-size: 1.2em;
    margin: 0;
}

/* Section Styles */
.section {
    margin: 40px 0;
    animation: slideIn 1.5s ease-out;
}

.section-title {
    font-size: 2.2em;
    color: #1e90ff;
    margin-bottom: 15px;
    text-align: center;
}

.section-content {
    margin: 0 auto;
    max-width: 850px;
    line-height: 1.8;
    font-size: 1.1em;
    opacity: 0;
    animation: fadeUp 1s forwards;
}

.section-content ul {
    padding-left: 20px;
    list-style: none;
}

.section-content ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.section-content ul li i {
    color: #32cd32;
    margin-right: 10px;
    font-size: 1.2em;
}

/* Call to Action */
.cta {
    text-align: center;
    padding: 40px 20px;
    background: #ff7f50;
    border-radius: 8px;
    color: white;
    animation: pulse 2s infinite;
}

.cta h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.cta a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
    font-size: 0.9em;
}

/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    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);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-slide h1 {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .section-content {
        font-size: 0.9em;
        padding: 10px;
    }

    .cta h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .title-slide h1 {
        font-size: 1.5em;
    }

    .section-content {
        font-size: 0.8em;
    }

    .cta h2 {
        font-size: 1.5em;
    }
}
