/* General body styling */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1200px;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.8;
}

/* Container styling for content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Heading styling */
h1 {
    color: #333;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraph styling */
p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

/* List styling */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Link styling */
a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #f0f0f0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

a:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer styling */
footer {
    margin-top: 50px;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    border-radius: 10px;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
    color: #f0f0f0;
}

/* Add some spacing between footer and content */
.footer-space {
    margin-top: 40px;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p, a {
        font-size: 1rem;
    }

    li {
        font-size: 1rem;
    }
}

/* Smooth hover effect for links */
li:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}
