.elementor-7 .elementor-element.elementor-element-74b0974{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-4fb3fb2{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-9ed8614{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-7 .elementor-element.elementor-element-7f8522d{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-1e3f326{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7 .elementor-element.elementor-element-aea2394{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-9f0a043{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7 .elementor-element.elementor-element-0ad923c{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-9a2b189{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-7 .elementor-element.elementor-element-382a9ea{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-55e17c5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS *//* 심플한 회색 배경 + 흰색 박스 스타일 CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.temu-container {
    max-width: 100%;
    margin: 0;
    padding: 20px;
    background: #ffffff;
    border-radius: 0;
    border: none;
}

.temu-title,
h1, h2, h3 {
    color: #333333;
    font-weight: 600;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

.temu-title {
    font-size: 24px;
    margin-bottom: 30px;
}

h1 {
    font-size: 28px;
    margin-bottom: 25px;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.temu-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.temu-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.temu-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.temu-card-title {
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.temu-icon {
    color: #ff6b35;
    margin-right: 10px;
    font-weight: bold;
}

.temu-description {
    color: #666666;
    line-height: 1.6;
    font-size: 14px;
}

.temu-link {
    color: #4a90e2;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.temu-link:hover {
    text-decoration: underline;
    color: #357abd;
}

.temu-button {
    background: #ff6b35;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.temu-button:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

/* 테이블 스타일 개선 */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

table th,
table td {
    padding: 12px 8px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    body {
        max-width: 100%;
        padding: 0;
    }
    
    .temu-container {
        margin: 0;
        padding: 15px;
        border-radius: 0;
    }
    
    .temu-card {
        padding: 20px;
        margin: 10px 0;
    }
    
    /* 모바일 테이블 스타일 */
    table {
        font-size: 12px !important;
    }
    
    table th,
    table td {
        padding: 8px 4px !important;
        font-size: 12px !important;
    }
    
    /* 테이블 가로 스크롤 영역 패딩 조정 */
    .table-scroll {
        overflow-x: auto;
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .temu-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 16px;
    }
    
    .temu-grid {
        gap: 15px;
    }
}

/* 추가 유틸리티 클래스 */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}/* End custom CSS */