* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #f5f5f5;
    line-height: 1.7;
}

.hero {
    background: radial-gradient(circle at top, #222, #000);
    text-align: center;
    padding: 60px 20px;
}

.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
}

.subtitle {
    margin-top: 10px;
    font-size: 1rem;
    color: #ccc;
}

section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

section h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.about p {
    text-align: center;
    font-size: 1.05rem;
}

.leaders {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.leader {
    background: #111;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    min-width: 250px;
}

.services ul {
    list-style: none;
    text-align: center;
}

.services li {
    font-size: 1.1rem;
    margin: 10px 0;
}

.social {
    text-align: center;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
}

footer {
    background: #000;
    border-top: 1px solid #222;
    text-align: center;
    padding: 30px 15px;
    font-size: 0.9rem;
    color: #aaa;
}