@charset "UTF-8";

/* 기본 컨테이너 */
.smg-static-container {
    margin: 20px auto;
    padding: 10px;
    font-family: 'Pretendard', 'Malgun Gothic', sans-serif;
}

/* 카드 스타일 (마우스 오버 효과 제거) */
.smg-info-card {
    display: flex;
    gap: 20px;
    background: #fdfdfd;
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 16px;
}

/* 숫자 표시 */
.info-num {
    font-size: 20px;
    font-weight: 800;
    color: #0056a1;
    line-height: 1;
}

/* 컨텐츠 영역 */
.info-content {
    flex: 1;
}

.info-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding-left: 15px;
    position: relative;
    margin-bottom: 7px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0056a1;
    font-weight: bold;
}

.info-text {
    margin: 0;
    font-size: 16px;
    color: #444;
}

.mail-address {
    color: #0056a1;
    font-weight: 500;
}

/* 하단 버튼 */
.smg-btn-area {
    text-align: center;
    margin-top: 30px;
}

.smg-download-btn {
    display: inline-block;
    padding: 16px 50px;
    background: #0056a1;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 86, 161, 0.1);
}

.smg-download-btn:hover {
	background: #003d73;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 86, 161, 0.2);
}
	
.smg-download-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 86, 161, 0.2);
}
		
/* 📱 반응형 설정 */
@media (max-width: 600px) {
    .smg-info-card {
        flex-direction: column;
        gap: 8px;
        padding: 20px;
    }
    
    .info-num {
        font-size: 16px;
        padding-bottom: 5px;
        border-bottom: 1px solid #eee;
        display: inline-block;
        width: fit-content;
    }

    .smg-download-btn {
        width: 100%;
        box-sizing: border-box;
    }
}

/* 1. 컨테이너 및 카드 레이아웃 */
.smg-container { 
    max-width: 800px; 
    margin: 40px auto; 
    font-family: 'Pretendard', -apple-system, sans-serif; 
    color: #333; 
}
.smg-card { 
    background: #fff; 
    border: 1px solid #e2e8f0; 
    border-radius: 20px; 
    padding: 40px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
}

/* 2. 타이틀 및 섹션 구분 */
.smg-title { font-size: 26px; font-weight: 800; margin-bottom: 30px; text-align: center; color: #1a202c; }
.smg-sub-title { 
    font-size: 18px; 
    font-weight: 700; 
    margin: 25px 0 15px; 
    color: #0056a1; 
    border-left: 5px solid #0056a1; 
    padding-left: 12px; 
}

/* 3. 입력 폼 스타일 */
.smg-form-group { margin-bottom: 20px; }
.smg-form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 15px; }
.smg-form-group input, 
.smg-form-group textarea { 
   width: 100%; 
   padding: 14px; 
   border: 1px solid #cbd5e1; 
   border-radius: 10px; 
   box-sizing: border-box; 
   background-color: #f8fafc; 
   font-size: 15px; 
   transition: all 0.3s;
}
.smg-form-group input:focus, 
.smg-form-group textarea:focus { 
   border-color: #0056a1; 
   outline: none; 
   background-color: #fff; 
   box-shadow: 0 0 0 3px rgba(0, 86, 161, 0.1);
}

/* 4. 전송 버튼 스타일 (이 부분이 적용되어야 합니다) */
.smg-btn-wrap { margin-top: 35px; }

/* 전송 버튼 강제 적용 */
.btn-send {
    display: block !important;
    width: 100% !important;
    height: 60px !important;
    background-color: #0056a1 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: background 0.2s ease-in-out !important;
}

.btn-send:hover {
    background-color: #003d73 !important;
}

/* 폼 그룹 간격 */
.smg-form-group { margin-bottom: 25px; }
.smg-form-group label { font-weight: bold; display: block; margin-bottom: 10px; }
.smg-form-group textarea { border: 1px solid #ddd; border-radius: 5px; width: 100%; padding: 15px; }

/* 옵션 A 적용 안내 문구 스타일 */
.smg-notice-box {
    background-color: #f8f9fa;
    border-left: 5px solid #0056a1;
    padding: 15px 20px; 
    margin-bottom: 25px;
}

.smg-notice-box p {
   margin: 0;
   font-size: 15px;
   color: #444;
   line-height: 1.6;
   word-break: keep-all;
}

.notice-highlight { color: #d9534f; font-weight: bold; }

input, textarea { 
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue','Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
	font-size: 15px;
	color: #333;
	outline: none;
}

input::placeholder, 
textarea::placeholder { 
	font-family: 'Pretendard', sans-serif;		
	color: #a0a0a0;
	opacity: 1;
}
