/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: #0078D7;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    background-color: #0078D7;
    color: white;
    padding: 20px 10%;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2rem;
}

nav ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

/* Section Styles */
section {
    padding: 20px 10%;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

section h2 {
    border-bottom: 2px solid #0078D7;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #0078D7;
}

section h3 {
    font-size: 1.4rem;
    margin-top: 20px;
}

ul {
    list-style: disc;
    margin: 10px 0 10px 20px;
    padding: 0;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer a {
    color: #00A4FF;
}

footer a:hover {
    color: #00C0FF;
}

/* Responsive Design */
@media (max-width: 768px) {
    header, section {
        padding: 20px 5%;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
