:root {
    --dark: #2c2c25;
    --muted: #6a6a6a;
    --gold: #d4af37;
    --gold-dark: #b8942d;
    --soft: #f6f6f6;
    --white: #ffffff;
}

section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 32px;
}

/* ===========================================================
    SECTION 1
=========================================================== */
.join-hero h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
}

.join-hero p {
    text-align: center;
    max-width: 760px;
    margin: 14px auto;
    line-height: 1.7;
    color: var(--muted);
}

/* ===========================================================
    SECTION 2
=========================================================== */
.join-why h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.join-why p {
    max-width: 820px;
    margin: 12px auto;
    text-align: center;
}

/* ===========================================================
    SECTION 3
=========================================================== */
.join-who h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.join-who .section-intro {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.two-grid,
.three-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.two-grid {
    grid-template-columns: 1fr 1fr;
}

.three-grid {
    grid-template-columns: repeat(3, 1fr);
}

.who-card {
    background: var(--white);
    padding: 26px;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.25);
    box-shadow: 0 8px 18px rgba(0,0,0,0.07);
    text-align: center;
}

.who-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 16px;
    border-radius: 50%;
}

.who-card h3 {
    font-weight: 800;
    margin-bottom: 12px;
}

.who-card p {
    text-align: left;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 10px;
}

/* ===========================================================
    SECTION 4
=========================================================== */
.join-ways h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 14px;
}

.join-ways p {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

/* ===========================================================
    SECTION 5
=========================================================== */
.join-final {
    text-align: center;
    max-width: 780px;
}

.join-final h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.join-final p {
    margin-bottom: 16px;
    color: var(--muted);
}

.cta-join {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--white);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: 0.25s ease;
    text-decoration: none;
}

.cta-join:hover {
    background: var(--gold-dark);
}

@media (max-width: 900px) {
    .two-grid {
        grid-template-columns: 1fr;
    }
    .three-grid {
        grid-template-columns: 1fr;
    }
}