/**
 * NanoNside - 약관 페이지 스타일 (이용약관, 개인정보처리방침)
 */

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.terms-header {
    text-align: center;
    margin-bottom: 2rem;
}

.terms-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.terms-version {
    font-size: 0.875rem;
    color: #6b7280;
}

.terms-content {
    line-height: 1.8;
    color: #374151;
}

.terms-section {
    margin-bottom: 2rem;
}

.terms-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.terms-section-content {
    padding-left: 1rem;
}

.terms-section-content p {
    margin-bottom: 0.75rem;
}

.terms-section-content ul,
.terms-section-content ol {
    margin-left: 1rem;
    margin-bottom: 0.75rem;
}

.terms-section-content li {
    margin-bottom: 0.5rem;
}

.terms-section-content ol {
    list-style-type: decimal;
}

.terms-section-content ul {
    list-style-type: disc;
}

.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.875rem;
}

.terms-table th,
.terms-table td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
}

.terms-table th {
    background-color: #f9fafb;
    font-weight: 500;
    color: #374151;
}

.terms-table td {
    color: #4b5563;
}

.terms-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    text-align: right;
    font-size: 0.875rem;
    color: #6b7280;
}

/* 인쇄용 스타일 */
@media print {
    .terms-container {
        max-width: 100%;
        padding: 1rem;
    }

    .terms-title {
        font-size: 1.25rem;
    }

    .terms-section-title {
        font-size: 1rem;
    }
}

/* 반응형 */
@media (max-width: 768px) {
    .terms-container {
        padding: 1rem;
    }

    .terms-title {
        font-size: 1.25rem;
    }

    .terms-section-title {
        font-size: 1rem;
    }

    .terms-section-content {
        padding-left: 0.5rem;
    }

    .terms-table {
        font-size: 0.75rem;
    }

    .terms-table th,
    .terms-table td {
        padding: 0.5rem;
    }
}
