/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7fc;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 15px;
} */

h1 {
    text-align: center;
    background-image: linear-gradient(to left, #a90ff1, #f700ff);
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 2.5rem;
}

.container {
    width: 90%;
    margin: 20px auto;
    padding: 10px;
}

.section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2rem;
    color: #9029b9;
    border-bottom: 3px solid #2980b9;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.section ul {
    padding-left: 20px;
}

.section ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.resources li {
    margin-left: 30px;
    color: #000000;
}

.timeline {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.timeline p {
    margin: 10px 0;
}

.highlight {
    color: #e74c3c;
    font-weight: bold;
}

.resources {
    margin-top: 20px;
}

.resources ul {
    list-style-type: none;
    padding-left: 0;
}

.resources li {
    margin-bottom: 10px;
}

.footer {
    background-color: #9f16df;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
    width: 100%;
    bottom: 0;
}

.btn {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2980b9;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        width: 80%;
    }

    h1 {
        font-size: 2rem;
        padding: 15px;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .section ul li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    h1 {
        font-size: 1.8rem;
        padding: 10px;
    }

    .section {
        padding: 15px;
    }

    .section h2 {
        font-size: 1.6rem;
    }

    .section ul li {
        font-size: 0.95rem;
    }

    .resources li {
        margin-left: 20px;
    }

    .footer {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
        padding: 8px;
    }

    .section h2 {
        font-size: 1.4rem;
    }

    .section ul li {
        font-size: 0.9rem;
    }

    .timeline p {
        font-size: 0.9rem;
    }

    .footer {
        font-size: 0.8rem;
    }

    .btn {
        padding: 6px 12px;
    }
}
