/* General layout */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
    line-height: 1.6;
}

/* Header hero */
.hero {
    background: linear-gradient(to bottom right, #d4af37, #f7e9a0);
    text-align: center;
    padding: 60px 20px;
    color: #1a1a1a;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    letter-spacing: 2px;
}

.hero h2 {
    margin-top: 10px;
    font-size: 22px;
    opacity: 0.9;
}

.subtitle {
    margin-top: 15px;
    font-size: 16px;
}

/* Navigation bar */
.navbar {
    display: flex;
    justify-content: center;
    background: #333;
    padding: 12px 0;
}

.navbar a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 16px;
}

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

/* Content sections */
.content, .section-light {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.section-light {
    background: white;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Links list */
.links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.links li {
    margin: 10px 0;
}

.links a {
    color: #b8860b;
    text-decoration: none;
    font-weight: bold;
}

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

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