/* Downloads Page Styles */

/* PC/랩탑 전용 본문 가로폭 85% 적용 (About Us와 동일) */
@media (min-width: 1025px) {
    .container {
        max-width: 850px; /* 1000px의 85% - About Us와 동일 */
    }
    
    /* PC/랩탑 전용 Downloads 페이지 본문 설정 */
    /* 메인 컨테이너 - 테두리 제거 및 헤더와 간격 조정 */
    .detail-page .container {
        border: none !important; /* 테두리 제거 */
        max-width: 850px !important; /* About Us와 동일한 너비 강제 */
        padding: 0 16px !important; /* About Us와 동일한 패딩 강제 */
        margin-top: 100px !important; /* 헤더와 100px 간격 */
    }
    
    /* 각 섹션 - 테두리 제거 */
    .detail-page .section {
        border: none !important; /* 테두리 제거 */
        margin-bottom: 20px !important;
    }
}
