/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    animation: fadeIn 0.8s ease-in-out;
}

/* Header Styling */
h1 {
    font-size: 2.2rem;
    color: #2a5298;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

h2 {
    font-size: 1.5rem;
    color: #4f4f4f;
    text-align: center;
    margin-bottom: 15px;
}

/* Text Styling */
p {
    line-height: 1.8;
    font-size: 1rem;
    color: #555;
    text-align: justify;
    margin: 15px 0;
}

/* Key Points Styling */
ol, ul {
    padding-left: 20px;
    margin: 15px 0;
    color: #333;
}

ol li, ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

ol li::before, ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2a5298;
    font-size: 1.2rem;
}

/* Buttons */
button {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: #2a5298;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
    background: #1e3c72;
    transform: translateY(-2px);
}

/* Form Styling */
form {
    text-align: center;
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 15px;
    font-size: 1rem;
    cursor: pointer;
}

input[type="radio"] {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p, ol li, ul li {
        font-size: 0.95rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
