.org-chart {
    margin-top: 30px;
    text-align: center;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.org-box {
    background: #ffffff;
    border: 2px solid #1f3f8f;
    border-radius: 14px;
    padding: 16px 22px;
    min-width: 200px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.org-box strong {
    display: block;
    color: #1f3f8f;
    font-size: 16px;
    margin-bottom: 6px;
}

.org-box span {
    display: block;
    color: #222;
    font-size: 14px;
}

.org-box.president {
    background: #1f3f8f;
}

.org-box.president strong,
.org-box.president span {
    color: #ffffff;
}

.club-info {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .org-level {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .org-box {
        width: 100%;
        max-width: 320px;
    }
}