/* 개인정보방침 페이지 스타일 */
body {
    background: #f8fafc;
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

#content {
    padding-top: 80px;
    min-height: 100vh;
    background: #f8fafc;
}

#con {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.secret {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.secret::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

/* 머리말 스타일 */
.secret .point {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1e293b;
    border-left: 5px solid #3b82f6;
    position: relative;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.secret .point::before {
    content: '🔒';
    font-size: 2rem;
    position: absolute;
    top: -10px;
}

/* 섹션 스타일 */
.secret dl {
    margin-bottom: 3rem;
    background: #fafafa;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.secret dl:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.secret dt {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #3b82f6;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.secret dt::before {
    content: counter(section-counter);
    counter-increment: section-counter;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.secret {
    counter-reset: section-counter;
}

.secret dd {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
    margin: 0;
}

/* 리스트 스타일 */
.secret ul {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.secret li {
    position: relative;
    padding: 0.8rem 0 0.8rem 2rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.secret li:hover {
    border-left-color: #3b82f6;
    background: #f8fafc;
}

.secret li::before {
    content: '▶';
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
    color: #3b82f6;
    font-size: 0.8rem;
}

/* 중첩 리스트 스타일 */
.secret li ul {
    margin: 1rem 0 0.5rem 0;
    padding-left: 0;
}

.secret li ul li {
    background: #f1f5f9;
    border-left: 3px solid #cbd5e1;
    margin-left: 1rem;
    font-size: 0.95rem;
}

.secret li ul li::before {
    content: '→';
    color: #64748b;
}

.secret li ul li:hover {
    border-left-color: #64748b;
    background: #e2e8f0;
}

/* 특별한 섹션 스타일 (연락처 등) */
.secret dl:last-child {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border: none;
}

.secret dl:last-child dt {
    color: white;
    border-bottom-color: #60a5fa;
}

.secret dl:last-child dd {
    color: #cbd5e1;
}

.secret dl:last-child li {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #475569;
    color: #e2e8f0;
}

.secret dl:last-child li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #60a5fa;
}

.secret dl:last-child li::before {
    color: #60a5fa;
}

/* 연락처 링크 스타일 */
.secret dl:last-child a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.secret dl:last-child a:hover {
    color: #dbeafe;
    text-decoration: underline;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    #con {
        padding: 2rem 1rem;
    }
    
    .secret {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }
    
    .secret .point {
        padding: 2rem;
        font-size: 1rem;
        border-radius: 12px;
        margin-bottom: 2rem;
    }
    
    .secret .point::before {
        font-size: 1.5rem;
        top: -5px;
        right: 15px;
    }
    
    .secret dl {
        padding: 2rem;
        margin-bottom: 2rem;
        border-radius: 12px;
    }
    
    .secret dt {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .secret dt::before {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        align-self: flex-start;
    }
    
    .secret dd {
        font-size: 0.95rem;
    }
    
    .secret li {
        padding: 0.6rem 0 0.6rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .secret li ul li {
        margin-left: 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    #con {
        padding: 1.5rem 0.5rem;
    }
    
    .secret {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .secret .point {
        padding: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .secret .point::before {
        display: none;
    }
    
    .secret dl {
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    .secret dt {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .secret dt::before {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .secret dd {
        font-size: 0.9rem;
    }
    
    .secret li {
        padding: 0.5rem 0 0.5rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .secret li ul li {
        font-size: 0.8rem;
    }
}

/* 스크롤 애니메이션 */
.secret dl {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.secret dl:nth-child(1) { animation-delay: 0.1s; }
.secret dl:nth-child(2) { animation-delay: 0.2s; }
.secret dl:nth-child(3) { animation-delay: 0.3s; }
.secret dl:nth-child(4) { animation-delay: 0.4s; }
.secret dl:nth-child(5) { animation-delay: 0.5s; }
.secret dl:nth-child(6) { animation-delay: 0.6s; }
.secret dl:nth-child(7) { animation-delay: 0.7s; }
.secret dl:nth-child(8) { animation-delay: 0.8s; }
.secret dl:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
