/**
 * 이용안내 페이지 CSS
 */

.guide-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 운영 기간 섹션 */
.guide-period {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
	
}

.guide-period-title {
    font-size: 18px;
    font-weight: 600;
    color: #002244;
    margin-bottom: 15px;
}

.guide-period-notice {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.guide-period-notice strong {
    color: #dc3545;
}

/* 다운로드 버튼 */
.guide-download {
    display: flex;
	align-items:center;
	justify-content :center;
    margin-bottom: 30px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
	padding:0px 40px;
    height: 80px;
    background: #002244;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}
.download-btn i{margin-right:10px;}

.download-btn:hover {
    background: #003366;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 34, 68, 0.2);
}

.download-btn i {
    margin-right: 8px;
    font-size: 20px;
}

/* 이용약관 */
.guide-section {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.guide-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #002244;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #002244;
}

.terms-box {
    height: 300px;
    overflow-y: auto;
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    line-height: 1.8;
    font-size: 15px;
    word-break: keep-all;
}
.terms-box.faq{
	overflow-y: visible;
	height:auto;
}

/* 주의사항 */
.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-list li {
    padding: 5px 0 5px 25px;
    position: relative;
    line-height: 1.6;
    color: #333;
    font-size: 15px;
}

.notice-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #002244;
    font-weight: bold;
}

/* 문의처 */
.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
}

.contact-info p {
    margin: 12px 0;
    line-height: 1.8;
    font-size: 17px;
}

.contact-info strong {
    color: #002244;
    font-weight: 600;
    font-size: 18px;
}

.contact-info a {
    color: #002244;
    text-decoration: underline;
}

.contact-info a:hover {
    color: #003366;
}

/* 반응형 */
@media (max-width: 768px) {
    .guide-container {
        padding: 0 5px;
        margin: 20px auto;
    }

    .guide-download {
        gap: 10px;
    }

    .download-btn {
        height: 70px;
        font-size: 15px;
    }

    .guide-section {
        padding: 20px 15px;
    }

    .guide-section-title {
        font-size: 18px;
    }

    .guide-period-title {
        font-size: 16px;
    }

    .guide-period-notice {
        font-size: 14px;
    }

    .terms-box {
        height: 300px;
        padding: 15px;
    }
}

@media (max-width: 550px) {
    .guide-container {
        padding: 0 0px;
    }

    .guide-download {
        grid-template-columns: 1fr;
        justify-items: center;
    }
	
	.guide-period {
		padding: 20px 15px;
	}
}
@media (max-width: 400px) {
	.contact-info{padding:0px;background-color:white;}
}