.privacy-container {
    max-width: 800px;
    margin: 60px auto;
}

.privacy-card {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.privacy-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.privacy-header h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.privacy-header p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.intro-text {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 40px;
    border: 1px dashed #cbd5e1;
}

/* 본문 섹션 스타일 */
.privacy-content {
    line-height: 1.8;
    color: #475569;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.privacy-section h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #1d4ed8;
    margin-right: 12px;
    border-radius: 2px;
}

.privacy-section p {
    margin-bottom: 12px;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section ul li {
    margin-bottom: 8px;
    list-style: disc;
}

.privacy-section ul li strong {
    color: #334155;
}

.highlight-box {
    background: #f0f4ff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #1d4ed8;
}

.highlight-box h3 {
    color: #0d3194;
}

.highlight-box h3::before {
    background: #1d4ed8;
}

.highlight-box p,
.highlight-box li {
    color: #0d3194;
}

/* 하단 버튼 영역 */
.privacy-actions {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-back {
    padding: 12px 30px;
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back:hover {
    background: #e2e8f0;
}

.btn-confirm {
    padding: 12px 40px;
    background: #2563eb;
    /* 결정 버튼은 브랜드 컬러 유지 */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-confirm:hover {
    background: #1d4ed8;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .privacy-container {
        margin: 20px auto;
        padding: 0 15px;
    }

    .privacy-card {
        padding: 30px 20px;
    }

    .privacy-header h2 {
        font-size: 1.5rem;
    }

    .privacy-actions {
        flex-direction: column-reverse;
    }

    .btn-back,
    .btn-confirm {
        width: 100%;
    }
}