/* 공통 스타일 */
.innovation-team {
    width: 100%;
    padding: 0 20px;
}

/* 상단 소개 박스 스타일 */
.top-content-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 50px;
    margin-bottom: 50px;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

/* 제목 스타일
.title_tea {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
} */

/* 섹션별 title 스타일 */
.work-area .title_tea {
    text-align: left;
    margin-bottom: 5px;
    font-size: 28px;
}

/* 팀 소개 스타일 */
.team-intro {
    text-align: center;
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.team-intro h2 {
    display: none;
}

.team-intro p {
    color: #2C3E50;
    font-size: 22px;
    word-break: keep-all;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* 기존 이미지 영역 스타일은 유지 (메인 이미지 3장에 사용됨) */
.image-area {
    width: 100%;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.image-area img {
    width: calc(33.333% - 14px);
    max-width: 500px;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    /* transition: all 0.3s ease; */ /* 마우스 오버 효과 제거 */
}

/* 업무 영역 스타일 */
.work-area {
    margin: 30px 0;
}

.work-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #333;
}

.work-table th {
    background: #fbe9e3;
    text-align: center;
    color: #000;
    padding: 15px 10px;
    border: 1px solid #ddd;
    font-weight: 500;
}

.work-table td {
    padding: 15px 10px;
	text-align: center;
    border: 1px solid #ddd;
    line-height: 1.6;
    color: #666;
    background-color: #fff;
}

.work-table td ul {
    margin: 0;
    padding-left: 20px;
}

.work-table td ul li {
    margin-bottom: 5px;
}

/* 강조 색상 */
.highlight-orange {
    color: #F66F40;
}

.highlight-blue {
    color: #0066CC;
}

.highlight-red {
    color: #FF0000;
}

/* 반응형 스타일 */
@media screen and (max-width: 768px) {
    .work-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .work-table th,
    .work-table td {
        min-width: 160px;
    }
    
    .work-table td:nth-child(2) {
        min-width: 300px;
    }

    .image-area {
        flex-wrap: wrap;
    }

    .image-area img {
        width: 100%;
        max-width: none;
    }

    .team-intro p {
        font-size: 20px;
        word-break: keep-all;
    }

    .team-intro p br {
        display: none;
    }
}

/* 테이블 셀 세로 병합 스타일 */
.work-table td[rowspan] {
    vertical-align: middle;
    text-align: center;
}

@media (max-width: 767px) {
    .sm_iyong p, li, dd {
        font-size: 18px;
    }
}

/* 마지막 반응형 스타일도 제거 (더 이상 사용되지 않음) */
@media screen and (max-width: 768px) {
    .two-images {
        flex-direction: column;
    }
    
    .two-images img {
        width: 100%;
    }
}

/* Add this at the beginning or appropriate section of your CSS file */
body {
    font-size: 18px; /* Adjust the font size as needed */
    line-height: 1.5; /* Set line height for better readability */
}


.usage-time-content {
    font-size: 18px; /* Increase the font size as needed */
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
    list-style-type: disc;
    padding-left: 20px;
}

/* Remove margin and padding from unordered lists */
ul {
    margin: 0;
    padding: 0;
    list-style-type: none; /* Optional: Remove bullet points */
}

/* 인사말 페이지 스타일 */
.title_t3 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    word-break: keep-all;
}

.greeting-content {
    padding: 0 30px;
    display: flex;
    gap: 50px;
}
@media screen and (max-width: 768px) {

}

.greeting-text {
    flex: 1;
    font-size: 24px;
}

.greeting-text .one-title{
    line-height: 1.2;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.greeting-image {
    flex: 0 0 300px;
}

.greeting-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.content_box04 {
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.content_box04 p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 10px;
}

.content_01 p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0px;
    word-break: keep-all;
    color: #666;
}

.signature-area {
    text-align: right;
    margin-top: 50px;
    padding-right: 30px;
    padding-left: 30px;
}
.signature-area p {
    margin-bottom: 10px;
}

.signature-area .position {
    font-size: 24px;
    margin-top: 20px;
}

/* 반응형 스타일 */
@media screen and (max-width: 768px) {
    .greeting-content {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .greeting-content, .signature-area {
        padding-left: 20px;
        padding-right: 20px;
    }

    .greeting-image {
        flex: 0 0 auto;
        max-width: 250px;
        margin: 0 auto;
    }

    .title_t1 {
        font-size: 24px;
    }

    .content_box04 p {
        font-size: 18px;
    }

    .content_01 p {
        font-size: 18px;
    }
} 

.content_box04.sub01_info {
    position: relative;
    padding-bottom: 60px;
}

.sub01_info .bottom_menu {
    position: absolute;
    background-color: #FBE9E3;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    border-top: 1px solid #eee;
}

.sub01_info .bottom_menu .menu_item {
    flex: 1;
    text-align: center;
    padding: 15px 0;
	font-weight: 600;
    font-size: 21px;
}

.sub01_rights_cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
    margin-bottom: 30px;
}

.sub01_case_item {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sub01_case_item:hover {
    transform: translateY(-5px);
}

.sub01_case_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub01_text_area {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.sub01_text_area h3 {
    color: #f76a39;
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: 600;
}

.sub01_text_area p {
    color: #202020;
    font-size: 18px;
    line-height: 24px;
}

.sub01_icon_area {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.sub01_icon_area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1200px) {
    .sub01_rights_cases {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sub01_icon_area {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 768px) {
    .sub01_rights_cases {
        grid-template-columns: 1fr;
    }
    
    .sub01_case_content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .sub01_text_area {
        padding-right: 0px;
        padding-top: 20px;
        text-align: center;
    }
    
    .sub01_icon_area {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .sub01_text_area h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .sub01_text_area p {
        font-size: 16px;
        line-height: 20px;
    }
}

/* 권익옹호 절차 스타일 */
.sub01_process_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 40px 0;
    width: 100%;
}

.sub01_process_item {
    flex: 1;
    text-align: center;
}

.sub01_step {
    background: linear-gradient(to right, #FF9F5B, #FF7043);
    color: #fff;
    padding: 2px 15px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.sub01_icon_box {
    background: #fff;
    border: 2px solid #FF7043;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height:170px;
}

.sub01_icon_box img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.sub01_text_box {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
    color: #333;
    line-height: 22px;
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub01_process_arrow {
    color: #B3B3B2;
    font-size: 24px;
    display: flex;
    align-items: center;
    padding: 0 5px;
    flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
    .sub01_icon_box {
        height: 220px;
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .sub01_process_wrap {
        flex-direction: column;
        gap: 20px;
    }
    
    .sub01_process_item {
        width: 100%;
    }
    
    .sub01_process_arrow {
        transform: rotate(90deg);
    }
    
    .sub01_icon_box {
        height: 200px;
        padding: 15px;
    }
}

/* 절차별 상세 설명 스타일 */
.sub01_process_detail_wrap {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.sub01_process_detail_item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.sub01_process_detail_item:last-child {
    border-bottom: none;
}

.sub01_process_number {
    color: #FF7043;
    font-size: 20px;
    font-weight: 700;
    width: 60px;
    flex-shrink: 0;
}

.sub01_process_title {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    width: 230px;
    flex-shrink: 0;
}

.sub01_process_desc {
    color: #666;
    font-size: 18px;
    flex: 1;
}

@media screen and (max-width: 768px) {
    .sub01_process_detail_wrap {
        padding: 20px 15px;
    }

    .sub01_process_detail_item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }

    .sub01_process_number {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .sub01_process_title {
        font-size: 18px;
        width: 100%;
        margin-bottom: 5px;
    }

    .sub01_process_desc {
        font-size: 16px;
        width: 100%;
    }
}