/* General Styles */
body, h1, h2, h3, p, ul, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9fafc;
}

header {
    text-align: center;
    background: linear-gradient(90deg, #0070d2, #005fb2);
    color: white;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 40px 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #005fb2;
}

.resource {
    margin: 20px 0;
}

.resource h3 {
    font-size: 1.5rem;
    color: #0070d2;
}

.resource p {
    font-size: 1rem;
}

ul {
    list-style: disc;
    margin-left: 20px;
}

.cta-button {
    display: inline-block;
    background: #0070d2;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 10px;
}

.cta-button:hover {
    background: #005fb2;
}

footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

footer nav ul li {
    margin: 0 15px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

footer nav ul li a:hover {
    text-decoration: underline;
}
