body {
    background-color: #0f172a;
    font-family: 'Poppins', sans-serif;
    color: #e2e8f0;
    margin: 0;
    padding: 2rem;
}

.accordion-section h1 {
    color: #00f0ff;
    text-align: center;
    margin-bottom: 2rem;
}

.accordion {
    background-color: #1e293b;
    color: #00f0ff;
    cursor: pointer;
    padding: 14px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    transition: background-color 0.2s ease;
    border-radius: 6px;
    margin-top: 10px;
}

.accordion:hover {
    background-color: #334155;
}

.accordion.active {
    background-color: #475569;
}

.panel {
    background-color: #1e293b;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-radius: 0 0 8px 8px;
    padding: 0 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

table thead {
    background-color: #334155;
}

table th, table td {
    padding: 12px;
    border-bottom: 1px solid #475569;
    text-align: left;
}

table tr:hover {
    background-color: #293445;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    table th, table td {
        font-size: 0.9rem;
    }
}
.btn-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s, transform 0.2s;
    text-align: center;
}

.neon-btn {
    background-color: #8b5cf6; /* 바이올렛 포인트 */
    color: #fff;
}

.neon-home-btn {
    background-color: #00f0ff;
    color: #0f172a;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}
.position-img-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}

.position-img-wrapper img {
    max-width: 100%;
    height: auto;
    border: 2px solid #334155;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
/* 상단 네온 배경 섹션 */
.section-hero {
    padding: 4rem 1rem 4rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(0, 240, 255, 0.15), transparent);
}

/* 네온 타이틀 */
.section-title {
    font-size: 2.5rem;
    color: #00f0ff;
    text-shadow:
            0 0 6px #00f0ff,
            0 0 12px #00f0ff,
            0 0 18px #00f0ff;
    margin-bottom: 0.5rem;
}

/* 서브 타이틀 (선택) */
.section-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}
