#main {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f8f9fa;
}

.privacy-section {
    padding: 120px 0 80px;
}

.privacy-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.privacy-section-item:last-child {
    margin-bottom: 0;
}

.privacy-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.privacy-section-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.privacy-section-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-section-list-item {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

/* 모바일 대응 */
@media screen and (max-width: 768px) {
    .privacy-section {
        padding: 100px 0 60px;
    }

    .privacy-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .privacy-section-item {
        margin-bottom: 30px;
    }

    .privacy-section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .privacy-section-desc,
    .privacy-section-list-item {
        font-size: 14px;
    }
} 