/* terms.css - 약관 및 안내 페이지 공통 스타일 */
.terms-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 50px;
    background-color: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.terms-title {
    font-size: 24px;
    font-weight: 500;
    color: #111;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F5F5F5;
    text-align: center;
}

.terms-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    word-break: keep-all;
}

.terms-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-content p {
    margin-bottom: 15px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .terms-container {
        margin: 20px 15px;
        padding: 30px 20px;
    }
    
    .terms-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .terms-content {
        font-size: 14px;
    }
    
    .terms-content h3 {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width: 520px) {
    .terms-container {
        margin: 10px;
        padding: 20px 15px;
        border-radius: 8px;
    }
    .terms-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    .terms-content {
        font-size: 13px;
        line-height: 1.6;
        letter-spacing: -0.5px;
    }
    .terms-content h3 {
        font-size: 15px;
        margin-top: 15px;
        margin-bottom: 10px;
    }
}
