* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: sans-serif;
    color: white;
    background: url('images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.container { position: relative; z-index: 2; max-width: 800px; padding: 20px; }
h1 { color: #FFD700; letter-spacing: 2px; margin-bottom: 20px; }
.main-logo { width: 300px; margin: 20px 0; }
main p { margin-bottom: 15px; line-height: 1.6; font-size: 0.95rem; }
.recognition-logos { width: 100%; max-width: 500px; margin-top: 20px; }
footer { margin-top: 40px; display: flex; justify-content: space-between; }
.socials a { color: white; text-decoration: none; margin-left: 10px; font-weight: bold; }