body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* HERO */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0a1128 0%, #1a2847 50%, #0d1f3c 100%);
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 40, 0.3);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.logo-box {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: bold;
}

/* CONTACT */
.contact-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}
.subtitle {
    margin-top: -10px;
    color: #666;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.contact-form button {
    width: 100%;
    padding: 14px;
    background: black;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* ABOUT */
.about-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.7;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.linkedin-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: white;
    color: #111;
    border-radius: 4px;
    font-weight: bold;
    line-height: 32px;
}
.subscribe input {
    padding: 12px;
    width: 240px;
    margin-top: 10px;
    border-radius: 6px;
    border: none;
}
.subscribe button {
    padding: 12px 20px;
    margin-top: 10px;
    background: white;
    color: #111;
    border: none;
    border-radius: 6px;
    font-weight: bold;
}
.footer-contact {
    margin-top: 30px;
}
a {
    color: #fff;
}
/* ASSOCIATES */
.associates-section {
    position: relative;
    background: #0d1321;
    color: #fff;
    text-align: center;
    padding: 80px 24px;
    overflow: hidden;
}

.associates-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #22d3ee, #a855f7, #ec4899);
}

.associates-section h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.associates-section .subtitle {
    color: #b8c1d1;
    margin-bottom: 48px;
}

.associates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.associate-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 20px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.associate-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
}

.avatar-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #0d1321;
    background: linear-gradient(135deg, #22d3ee, #a855f7);
}

.associate-card h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}

.post-nominal {
    display: block;
    font-size: 0.75rem;
    font-weight: normal;
    color: #b8c1d1;
}

.associate-card .credentials {
    color: #22d3ee;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.associate-card .bio {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d5dae3;
}

.associates-contact {
    margin-top: 48px;
    font-size: 1rem;
}

.associates-contact a {
    color: #22d3ee;
    text-decoration: none;
}
#starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
