
body { font-family: Arial, sans-serif; margin: 0; background: #f4f6fa; color: #333; }
    header { background-image: url(../../../RESOURCES/html.jpg); background-size: cover; background-repeat: no-repeat; background-position: center bottom; color: white; padding: 2rem 1rem; text-align: center; }
    header h1 { margin: 0; font-size: 2rem; }
    nav { background: #fff; border-bottom: 1px solid #ddd; padding: .5rem; text-align: center; position: sticky; top: 0; }
    nav a { margin: 0 .6rem; text-decoration: none; color: #1e88e5; font-weight: bold; }
    section { background: #fff; margin: 1rem auto; padding: 1rem; max-width: 900px; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,.1); }
    section h2 { color: #1e88e5; }
    ul, ol { margin-left: 1.2rem; }
    table { width: 100%; border-collapse: collapse; margin-top: .5rem; }
    th, td { border: 1px solid #ccc; padding: .5rem; }
    th { background: #e3f2fd; }


.footer {
    background: #222;
    color: #eee;
    padding: 40px 0 0 0;
    margin-top: 40px;
    font-family: inherit;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #eee;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.footer-social a {
    color: #eee;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding: 18px 0 10px 0;
    font-size: 0.95rem;
    color: #aaa;
    background: #1a1a1a;
    margin-top: 0;
}