.about-hero {
    text-align: center;
}

.about-hero h3 {
    color: #baffd0;
    font-weight: normal;
}

.hall-quote {
    margin: 25px auto;
    padding: 20px;
    max-width: 760px;
    border-left: 4px solid #00ff66;
    border-right: 4px solid #00ff66;
    color: white;
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 0 0 12px #00ff66;
}

.hall-quote span {
    display: block;
    margin-top: 12px;
    color: #77ffaa;
    font-size: 15px;
}

.jump-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.jump-grid a,
.toggle-all {
    color: #00ff66;
    background: #000;
    border: 1px solid #00ff66;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    font-family: "Courier New", monospace;
    box-shadow: 0 0 8px rgba(0,255,102,.45);
}

.jump-grid a:hover,
.toggle-all:hover {
    background: #00ff66;
    color: #000;
}

.toggle-all {
    cursor: pointer;
    margin: 5px;
}

.section-toggle {
    width: 100%;
    text-align: left;
    font-size: 18px;
    padding: 14px;
}

.section-toggle::before {
    content: "► ";
}

.dossier-section.open .section-toggle::before {
    content: "▼ ";
}

.section-content {
    display: none;
    padding-top: 15px;
}

.dossier-section.open .section-content {
    display: block;
}

.data-list p {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 18px;
    border-bottom: 1px dashed rgba(0,255,102,.35);
    padding: 10px 0;
    margin: 0;
    color: #baffd0;
}

.data-list span {
    color: #00ff66;
    font-weight: bold;
}

.end-file {
    text-align: center;
}

@media (max-width: 700px) {
    .data-list p {
        display: block;
    }

    .data-list span {
        display: block;
        margin-bottom: 4px;
    }

    .hall-quote {
        font-size: 17px;
    }
}