body {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    }

    header {
    background-color: #0b2d72;
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    header h1 {
    font-size: 2.5rem;
    margin: 0;
    animation: fadeIn 1.5s ease-in-out;
    }

    header p {
    font-size: 1.1rem;
    margin: 10px 0 0;
    opacity: 0.9;
    }

    main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    }

    section {
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    section:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0b2d72;
    display: inline-block;
    padding-bottom: 5px;
    }

    p, ul {
    font-size: 1.1rem;
    margin-bottom: 15px;
    }

    ul {
    padding-left: 20px;
    }

    a {
    color: #0b2d72;
    text-decoration: none !important;
    transition: color 0.3s ease;
    }

    a:hover {
    color: #012E4A;
    text-decoration: underline;
    }


    @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p, ul {
        font-size: 1rem;
    }
    }

    @media (max-width: 480px) {
    header {
        padding: 20px 10px;
    }

    main {
        padding: 10px;
    }

    section {
        padding: 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p, ul {
        font-size: 0.9rem;
    }
    }

    ul li {
        list-style: none; 
        margin-bottom: 8px; 
    }

    ul li i {
        color: #CC0000; 
        margin-right: 8px; 
        font-size: 16px; 
    }