.agree-wrapper {
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 14px;
    transition: all 0.2s ease;
}

.agree-wrapper:last-child {
    margin-bottom: 0;
}

/* 약관 항목 헤더 구역 */
.agree-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.agree-wrapper .checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
}

.agree-wrapper .checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #D4062D; /* 포인트 컬러 반영 */
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.agree-wrapper .checkbox-item label {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    user-select: none;
}

/* '보기' 토글 버튼 스타일 */
.btn-terms-toggle {
    background: #f0f2f5;
    border: none;
    color: #555;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
}

.btn-terms-toggle:hover {
    background: #e2e5eb;
    color: #111;
}

/* 토글되어 열리는 약관 상세 박스 */
.terms-content-box {
    display: none; /* 기본 숨김 상태 (기존 js 로직으로 제어됨) */
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #e6e8ec;
}

.terms-intro {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
}

/* 깔끔한 플랫 약관 테이블 */
.terms-table {
    width: 100%;
    border-collapse: separate;
    font-size: 13px;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d1d0d0;

}

.terms-table th,
.terms-table td {
    padding: 12px;
    text-align: center;
    line-height: 1.5;
}

.terms-table th {
    background: #f7f8fa;
    color: #333;
    font-weight: 700;
    border-bottom: 1px solid #eaeaea;
}

.terms-table td {
    background: #fff;
    color: #555;
    border-bottom: 1px solid #f1f1f1;
    vertical-align: top;
}

.terms-table tr:last-child td {
    border-bottom: none;
}

/* 약관 하단 유의사항 */
.terms-notice {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

/* 포인트 컬러 강조 텍스트 */
.highlight-text {
    font-weight: bold;
    text-decoration: underline;
    text-underline-position: under;
}

/* 마케팅 하위 채널 그룹 박스 */
.marketing-sub-group {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 16px;
    margin-top: 16px;
}

.sub-group-title {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.sub-checkbox {
    margin-bottom: 8px;
}

.sub-checkbox:last-of-type {
    margin-bottom: 14px;
}

.sub-checkbox label {
    font-size: 13px !important;
    color: #444 !important;
}

.sub-group-notice {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid #eaeaea;
    padding-top: 12px;
}

.sub-group-notice p {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
}