/* Sub Visual Section */
.sub_visual {
    height: 340px;
    background-image: url(../assets/sub_visual.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding-top: 100px;
    color: #fff;
}

.sub_visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.sub_visual .inner {
    height: 100%;
    display: flex;
    align-items: center;
}

.sub_visual .sub_title h2 {
    font-size: 40px;
    font-weight: 700;
}

.sub_visual .sub_title p {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 10px;
}

/* Location Bar */
.location_bar {
    padding: 20px 0;
    text-align: right;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
}

.location_bar .current {
    font-weight: 700;
    color: #333;
}

/* Greeting Content */
.greeting_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 100px;
}

.greeting_content .text_area {
    width: 55%;
}

.greeting_content .text_area h4 {
    font-size: 26px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}


.greeting_content .img_area {
    width: 40%;
}

.greeting_content .img_area img {
    width: 100%;
    border-radius: 0 100px 0 100px;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .greeting_content {
        flex-direction: column;
    }

    .greeting_content .text_area,
    .greeting_content .img_area {
        width: 100%;
    }

    .greeting_content .img_area {
        margin-top: 50px;
        text-align: center;
    }

    .greeting_content .img_area img {
        max-width: 500px;
    }
}

/* 대회요강 페이지 스타일 */
.main_title {
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
}

.info_box {
    margin-top: 20px;
}

.info_list li {
    display: flex;
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.6;
}

.info_list li strong {
    width: 150px;
    color: #008148;
    position: relative;
    padding-left: 20px;
}

.info_list li span {
    color: #333;
}

/* 참가비 테이블 */
.table_wrap {
    flex: 1;
}

.table_wrap table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #008148;
    text-align: center;
}

.table_wrap th {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #eee;
    font-weight: 700;
}

.table_wrap td {
    padding: 20px;
    border: 1px solid #eee;
    color: #666;
}

.table_wrap .benefit {
    background: #fff;
    font-size: 15px;
}

/* 모바일 대응 */
@media screen and (max-width: 768px) {
    .sub_visual {
        height: 240px;
        padding-top: 70px;
    }

    .sub_visual .sub_title h2 {
        font-size: 28px;
    }

    .sub_visual .sub_title p {
        margin-top: 0;
    }

    .main_title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .location_bar {
        margin-bottom: 30px;
    }

    .info_list li {
        flex-direction: column;
    }

    .info_list li strong {
        padding-left: 0;
        margin-bottom: 10px;
    }
}