.nonsul-about-wrap {
    background-color: #0b0f19;
    color: #ffffff;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    padding: 60px 0;
    line-height: 1.6;
}

.nonsul-about-wrap .badge-primary-soft {
    background: rgba(255, 183, 3, 0.15);
    color: #ffb703;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 12px;
}

.nonsul-about-wrap .section-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 8px;
    word-break: keep-all;
}

.nonsul-about-wrap .section-title .text-accent {
    color: #ffb703;
}

.nonsul-about-wrap .section-subtitle {
    color: #94a3b8;
    font-size: 1.05rem;
    margin-bottom: 40px;
    word-break: keep-all;
}

/* 카드 스타일 */
.nonsul-card {
    background: #151c2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.nonsul-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 183, 3, 0.4);
}

/* 수치 강조 카드 */
.stat-card {
    background: #151c2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffb703;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* 차별점 순번 스타일 */
.num-badge {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffb703;
    margin-bottom: 10px;
}

/* 태그 / 칩 디자인 */
.chip {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-right: 6px;
    margin-top: 8px;
}

/* 하단 배너 섹션 */
.footer-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .nonsul-about-wrap .section-title { font-size: 1.6rem; }
    .stat-card .stat-number { font-size: 1.5rem; }
    .nonsul-card { padding: 20px; }
}