
body .sub_title{padding: 0 20px 0; margin: 100px auto 0;}
#ctt #ctt_con{padding: 0 0 40px;}
.privacy-wrap {
    --primary: #ea6b31;
    --primary-light: #f28b5a;
    --primary-dark: #c75520;
    --accent: #ea6b31;
    --accent-light: #f5a67a;
    --bg-cream: #fafbfc;
    --bg-white: #ffffff;
    --text-dark: #1a202c;
    --text-muted: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
    --border-light: #edf2f7;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 12px;
    --radius-sm: 8px;
    
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-wrap * {
    box-sizing: border-box;
}

.privacy-wrap .intro-card {
    background: linear-gradient(135deg, #fef3ec 0%, #fff8f4 100%);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 32px;
    border: 1px solid #fcd9c4;
}

.privacy-wrap .intro-card p {
    margin: 0;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
}

.privacy-wrap .section {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.privacy-wrap .section:hover {
    box-shadow: var(--shadow-md);
}

.privacy-wrap .section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.privacy-wrap .section-header:hover {
    background: var(--bg-cream);
}

.privacy-wrap .section.active .section-header {
    background: var(--primary);
    color: white;
}

.privacy-wrap .section-number {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.privacy-wrap .section.active .section-number {
    background: rgba(255,255,255,0.2);
}

.privacy-wrap .section-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
}

.privacy-wrap .section-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.privacy-wrap .section-toggle::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin-top: -3px;
    transition: all 0.3s ease;
}

.privacy-wrap .section.active .section-toggle {
    background: rgba(255,255,255,0.2);
}

.privacy-wrap .section.active .section-toggle::before {
    border-color: white;
    transform: rotate(-135deg);
    margin-top: 3px;
}

.privacy-wrap .section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.privacy-wrap .section.active .section-content {
    max-height: 2000px;
}

.privacy-wrap .section-body {
    padding: 22px 28px 28px;
    border-top: 1px solid var(--border-light);
}

.privacy-wrap .section.active .section-body {
    border-top-color: rgba(255,255,255,0.1);
}

.privacy-wrap .section-body p {
    color: var(--text-dark);
    margin: 0 0 16px 0;
    font-size: 15px;
}

.privacy-wrap .section-body ol {
    list-style: none;
    margin: 16px 0 0 0;
    padding: 0;
}

.privacy-wrap .section-body > ol > li {
    position: relative;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-dark);
    border-left: 3px solid var(--accent);
}

.privacy-wrap .section-body ol ol {
    margin-top: 12px;
    margin-left: 8px;
}

.privacy-wrap .section-body ol ol li {
    padding: 10px 14px;
    margin-bottom: 6px;
    background: var(--bg-white);
    border-radius: 6px;
    font-size: 14px;
    border-left: 2px solid var(--border);
}

.privacy-wrap .contact-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 32px;
    color: white;
}

.privacy-wrap .contact-card h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-wrap .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.privacy-wrap .contact-item {
    background: rgba(255,255,255,0.12);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
}

.privacy-wrap .contact-item-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.privacy-wrap .contact-item-value {
    font-size: 15px;
    font-weight: 500;
}

.privacy-wrap .footer-text {
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-light);
}



.terms-wrap {
    --primary: #ea6b31;
    --primary-light: #f28b5a;
    --primary-dark: #c75520;
    --accent: #ea6b31;
    --accent-light: #f5a67a;
    --bg-cream: #fafbfc;
    --bg-white: #ffffff;
    --text-dark: #1a202c;
    --text-muted: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
    --border-light: #edf2f7;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 12px;
    --radius-sm: 8px;
    
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;

}

.terms-wrap * {
    box-sizing: border-box;
}

.terms-wrap .intro-card {
    background: linear-gradient(135deg, #fef3ec 0%, #fff8f4 100%);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 32px;
    border: 1px solid #fcd9c4;
}

.terms-wrap .intro-card p {
    margin: 0;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.8;
}

.terms-wrap .section {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.terms-wrap .section:hover {
    box-shadow: var(--shadow-md);
}

.terms-wrap .section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.terms-wrap .section-header:hover {
    background: var(--bg-cream);
}

.terms-wrap .section.active .section-header {
    background: var(--primary);
    color: white;
}

.terms-wrap .section-number {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.terms-wrap .section.active .section-number {
    background: rgba(255,255,255,0.2);
}

.terms-wrap .section-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
}

.terms-wrap .section-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.terms-wrap .section-toggle::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin-top: -3px;
    transition: all 0.3s ease;
}

.terms-wrap .section.active .section-toggle {
    background: rgba(255,255,255,0.2);
}

.terms-wrap .section.active .section-toggle::before {
    border-color: white;
    transform: rotate(-135deg);
    margin-top: 3px;
}

.terms-wrap .section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.terms-wrap .section.active .section-content {
    max-height: 2000px;
    display: block !important;
}

.terms-wrap .section-body {
    padding: 22px 28px 28px;
    border-top: 1px solid var(--border-light);
}

.terms-wrap .section.active .section-body {
    border-top-color: rgba(255,255,255,0.1);
}

.terms-wrap .section-body p {
    color: var(--text-dark);
    margin: 0 0 16px 0;
    font-size: 15px;
}

.terms-wrap .section-body ol {
    list-style: none;
    margin: 16px 0 0 0;
    padding: 0;
}

.terms-wrap .section-body > ol > li {
    position: relative;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-dark);
    border-left: 3px solid var(--accent);
}

.terms-wrap .section-body ol ol {
    margin-top: 12px;
    margin-left: 8px;
}

.terms-wrap .section-body ol ol li {
    padding: 10px 14px;
    margin-bottom: 6px;
    background: var(--bg-white);
    border-radius: 6px;
    font-size: 14px;
    border-left: 2px solid var(--border);
}

.terms-wrap .footer-text {
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-light);
}