
body {
    margin: 0;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(120deg, #101012 60%, #2e202c 100%);
    color: #fff;
}
header {
    background: rgba(10, 8, 20, 0.95);
    padding: 1.5em 2em 1em 2em;
    box-shadow: 0 4px 16px 0 #18181877;
    text-align: center;
}
.logo {
    font-size: 2.2em;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #e9c46a;
    text-shadow: 0 2px 16px #bba14a88, 0 1px 0 #2e202c;
}
.tm {
    font-size: .6em;
    vertical-align: super;
    color: #fffbe9;
    margin-left: 0.12em;
}
.tagline {
    font-size: 1.2em;
    color: #eedfb5;
    margin-top: 0.2em;
    font-style: italic;
}
.hero {
    background: linear-gradient(105deg, #181818 80%, #442a52 100%);
    padding: 4em 2em 3em 2em;
    border-radius: 2em;
    margin: 2em auto 2em auto;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 6px 32px 0 #2e202c77;
}
.hero h1 {
    font-size: 2.4em;
    color: #f2e9dc;
    margin-bottom: 0.5em;
}
.hero p {
    font-size: 1.15em;
    color: #e9c46a;
    margin-bottom: 1.5em;
}
.cta-btn {
    background: linear-gradient(90deg, #eedfb5, #e9c46a 70%, #af9869);
    color: #442a52;
    padding: 0.95em 2em;
    border-radius: 1.5em;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 2px 12px 0 #c9b47899;
    transition: background 0.3s, color 0.3s;
}
.cta-btn:hover {
    background: #2e202c;
    color: #eedfb5;
    border: 1px solid #eedfb5;
}
main section {
    max-width: 800px;
    margin: 3em auto;
    padding: 2em;
    background: rgba(23, 17, 29, 0.82);
    border-radius: 1.2em;
    box-shadow: 0 2px 16px 0 #2e202c55;
}
main section h2 {
    color: #e9c46a;
    margin-bottom: 0.5em;
    letter-spacing: 0.03em;
}
main section ul {
    list-style: none;
    padding: 0;
}
main section ul li {
    background: #18181899;
    margin: 0.6em 0;
    padding: 0.8em 1em;
    border-radius: 1em;
    color: #eedfb5;
    font-weight: 500;
    font-size: 1.08em;
    letter-spacing: 0.01em;
}
.partners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6em;
    justify-content: flex-start;
}
.partner {
    background: linear-gradient(120deg, #bba14a88, #442a52 90%);
    color: #2e202c;
    padding: 1.2em 2em;
    border-radius: 1.3em;
    font-weight: 700;
    font-size: 1.08em;
    min-width: 170px;
    margin: 0.5em 0;
    box-shadow: 0 2px 12px #442a5277;
    text-align: center;
}
.partner-role {
    color: #eedfb5;
    font-size: 0.96em;
    font-weight: 400;
    margin-top: 0.2em;
}
.contact a {
    color: #e9c46a;
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 1.5em 0 1em 0;
    color: #eedfb5;
    background: #1a161b;
    border-top: 1px solid #e9c46a44;
    font-size: 1em;
    letter-spacing: 0.04em;
    margin-top: 2em;
}
@media (max-width: 700px) {
    .hero, main section {
        padding: 1.2em 0.8em;
    }
    .partners-list {
        flex-direction: column;
        align-items: stretch;
    }
}
