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

header {
    background: #0078d4;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

main {
    padding: 20px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.links a img {
    border: none;
    max-width: 100%;
    height: auto;
    transition: transform 0.2s ease;
}

.links a img:hover {
    transform: scale(1.05);
}

.resources ul {
    list-style-type: none;
    padding: 0;
}

.resources li {
    margin: 10px 0;
}

.resources a {
    color: #0078d4;
    text-decoration: none;
    font-size: 1rem;
}

.resources a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
}
