/* Global Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1faff;
    color: #333;
    line-height: 1.6;
}

section {
    width: 80%;
    margin: 30px auto;
    background: #c5e5ff8a;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Headings Styling */
h1 {
    text-align: center;
    font-size: 2em;
    color: #0056b3;
    margin-bottom: 20px;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
}

h2 {
    font-size: 1.5em;
    color: #444;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 10px;
}

/* Text and Links Styling */
p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

ul {
    margin: 15px 0;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons and Inputs (Optional) */
button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #003d80;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    section {
        width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.3em;
    }

    h3 {
        font-size: 1.1em;
    }

    p {
        font-size: 1em;
    }
}
