@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

.iig-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', sans-serif;
}
.iig-container {
    color: #212529;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    margin: 20px auto;
    border-radius: 8px;
}
/* 헤더 */
.iig-header {
    padding: 24px 30px;
    border-bottom: 1px solid #e9ecef;
    text-align: left; /* [수정] 가운데 정렬을 왼쪽 정렬로 변경 */
}
.iig-header h1 {
    font-size: 26px;
    font-weight: 800;
}
.iig-header-description {
    margin-top: 12px;
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
    word-break: keep-all; /* [추가] 한글 단어 깨짐 방지 */
}
/* 메인 컨텐츠 영역 */
.iig-main-content {
    padding: 40px 30px;
}

/* Call to Action 영역 */
.iig-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
}
.iig-cta-box {
    flex: 1;
    padding: 24px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-align: center;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.iig-cta-box h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.iig-cta-box p {
    font-size: 15px;
    color: #495057;
    margin-bottom: 24px;
    flex-grow: 1;
}
.iig-cta-button {
    display: inline-block;
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    background-color: #4c6ef5;
    color: #ffffff;
}
.iig-cta-button:hover {
    background-color: #364fc7;
    color: #ffffff;
}

/* 푸터 영역 */
.iig-divider {
    border: 0;
    height: 1px;
    background-color: #e9ecef;
    margin: 0 30px;
}
.iig-footer-content {
    padding: 30px;
}
.iig-reference-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.iig-reference-section ul {
    list-style: none;
    padding-left: 0;
}
.iig-reference-section li {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}

/* 반응형 */
@media (max-width: 768px) {
    .iig-cta-wrapper {
        flex-direction: column;
    }
}