/* styles.css */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #333;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    max-width: 900px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.container:hover {
    transform: translateY(-5px);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
h1 {
    color: #007BFF;
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    border-bottom: 3px solid #007BFF;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
h2 {
    color: #0056b3;
    font-size: 24px;
    margin-top: 20px;
}
p, ul {
    line-height: 1.8;
    font-size: 17px;
    color: #444;
}
ul {
    padding-left: 20px;
    list-style: square;
}
li {
    margin-bottom: 10px;
    transition: transform 0.2s;
}
li:hover {
    transform: translateX(5px);
    color: #007BFF;
}
.section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}
.section:hover {
    background: #e9ecef;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 22px;
    }
    p, ul {
        font-size: 15px;
    }
}
