
/* topArea 스타일 */
#entrance {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px 40px;
}

.topArea {
    background: linear-gradient(135deg, #ea6b31 0%, #f5944e 100%);
    border-radius: 15px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(234, 107, 49, 0.3);
}

.topArea h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}



.topArea_content table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.topArea_content table thead tr {
    background: rgba(255, 255, 255, 0.2);
}

.topArea_content table th {
    padding: 15px 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.topArea_content table td {
    padding: 14px 12px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.topArea_content table tbody tr:last-child td {
    border-bottom: none;
}

.topArea_content table tbody tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* BottomArea 스타일 */
.BottomArea {
    margin-top: 60px;
    padding: 40px 0;
}

.BottomArea h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.process_wrap {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.process_box {
    width: 180px;
    min-height: 200px;
    padding: 30px 20px;
    background: #fff;
    border: 2px solid #ea6b31;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.process_box:hover {
    background: #ea6b31;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(234, 107, 49, 0.3);
}

.process_box:hover .process_icon i,
.process_box:hover .process_num,
.process_box:hover .process_text {
    color: #fff;
}

.process_icon {
    margin-bottom: 15px;
}

.process_icon i {
    font-size: 40px;
    color: #ea6b31;
    transition: all 0.3s ease;
}

.process_num {
    font-size: 24px;
    font-weight: 700;
    color: #ea6b31;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.process_text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.process_arrow {
    display: flex;
    align-items: center;
}

.process_arrow i {
    font-size: 24px;
    color: #ea6b31;
}

/* 반응형 */
@media (max-width: 768px) {
    .topArea {
        padding: 25px 15px;
    }

    .topArea h2 {
        font-size: 22px;
    }

    .topArea_content {
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .topArea_content table {
        min-width: 500px;
    }

    .topArea_content table th,
    .topArea_content table td {
        padding: 12px 10px;
        font-size: 14px;
        white-space: nowrap;
    }

    .topArea_content table th {
        font-size: 15px;
    }

    .process_wrap {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .process_box {
        width: 100%;
        max-width: 280px;
        min-height: auto;
    }

    .process_arrow {
        transform: rotate(90deg);
    }
    .BottomArea{margin-top: 0px;     padding: 50px 0;}
    .BottomArea h2{margin-bottom: 20px;}
}

@media (max-width: 480px) {
    .topArea_content table {
        min-width: 450px;
    }

    .topArea_content table th,
    .topArea_content table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .topArea_content table th {
        font-size: 14px;
    }
}
