*::-webkit-scrollbar {
    display: none;
}

/* 기본 스타일 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/* 헤더와 배경 이미지 설정 */
header {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

header .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

/* 투명 네비게이션 오버레이 */
.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    z-index: 10;
    overflow: visible;
}

.dropdown-background {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 3;
    display: none;
    transition: height 0.8s ease;
    transition: background-color 0.3s ease;
}

/* 로고 */
header .logo {
    max-width: 150px;
}

/* 네비게이션 메뉴 중앙 정렬 */
.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin: 0;
    padding: 0;
    position: relative;
}

.navbar li {
    margin: 0 15px;
    position: relative;
}

.navbar .dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: -36;
    border-radius: 4px;
    display: none;
    padding: 10px 0;
    margin: 0;
    z-index: 20;
    min-width: 200px;
    overflow: visible;
}

/* 드롭다운 내부 항목 정렬 */
.navbar .dropdown li {
    display: inline-block;
    padding: 10px 20px;
    color: white;
}

/* 드롭다운 항목 링크 */
.navbar .dropdown li a {
    text-decoration: none;
    font-size: 16px;
}

.navbar .dropdown li a:hover {
    color: #1E90FF;
}

.header-overlay:hover .dropdown {
    display: block;
}

.header-overlay:hover .dropdown-background {
    display: block;
    height: 300px;
}

.language {
    position: relative;
    margin-right: 30px;
}

.language a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.language a:hover {
    color: #1E90FF;
}

.language .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    display: none;
    padding: 10px 0;
    z-index: 20;
    min-width: 150px;
}

.language .dropdown li {
    padding: 5px 20px;
}

.navbar li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.navbar a.active {
    color: #4A90E2;
    font-weight: bold;
}

.dropdownList a.active {
    color: #4A90E2;
    font-weight: bold;
}
/*
.navbar > li.active > a {
    font-weight: bold;
    color: #007BFF;
}

.navbar .dropdown .active a {
    font-weight: bold;
    color: #007BFF;
}
*/
.navbar li a:hover {
    color: #1E90FF;
}

/* "상단" 문구 스타일 */
.careers-banner {
    position: absolute;
    bottom: 330;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* 메인 섹션 */
.recruitment-section {
    max-width: 1200px;
    margin: -300px auto 0 auto;
    position: relative;
    padding: 20px;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
    padding-bottom: 16px;
    border-bottom: solid 1px #ddd;
    gap: 10px;
}

.breadcrumb .icon {
    width: 20px;
}

.breadcrumb .arrow {
    width: 12px;
}

.breadcrumb span{
    font-weight: bold;
    color: black;
}

.breadcrumb a {
    text-decoration: none;
    color: black;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.list-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.list-title .icon {
    width: 20px;
    margin-right: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
}

table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination button {
	border: none;
    padding: 5px 10px;
    margin: 0 5px;
    background-color: white;
    cursor: pointer;
}

.pagination button.active {
//    background-color: #007BFF;
//    color: white;
}

footer {
    text-align: center;
    padding: 10px 0;
}

header h1 {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 2s ease-out, opacity 2s ease-out;
}

header h1.active {
    transform: translateY(0);
    opacity: 1;
}

@media screen and (max-width: 990px) {
    .header-overlay {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        position: relative;
    }
    
	.logo {
        max-width: 150px;
        height: auto;
    }
	
	.hamburger {
        font-size: 24px;
        color: white;
        cursor: pointer;
    }
	
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 10%;
        transform: translateX(-50%);
        width: 180%;
		background-color: rgba(0, 0, 0, 0.6);
        text-align: center;
        padding: 10px 0;
        border-radius: 5px;
    }

    .navbar.active {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }
	
	.navbar .dropdown {
		display: none;
        position: static;
        transform: none;
        width: 100%;
		padding: 0 0;
    }
	
	.navbar .dropdownList {
		display: none;
		flex-direction: column;
		text-align: left;
	}
	
	.navbar .dropdownList li {
		margin: 0;
	}
	
	.navbar > li.open .dropdownList {
		display: flex;
	}

    .navbar li {
        list-style: none;
		margin: 10 10 10 100;
		text-align: left;
    }

    .navbar a {
        text-decoration: none;
        color: white;
        font-size: 18px;
        font-weight: bold;
        display: block;
        padding: 0 0;
    }

    .navbar a:hover {
        color: #4A90E2;
    }
	
	.language {
        display: none;
    }

    /* 햄버거 버튼 스타일 */
    .hamburger {
        display: block;
        cursor: pointer;
        color: white;
        font-size: 24px;
        margin-right: 30px;
    }
	
	.hero-section {
		padding: 30px 20px;
	}
	
	.navbar > li.open .dropdown {
		display: block;
	}

    /* 히어로 섹션 */
    .hero-content {
        flex-direction: row;
        padding: 0px;
        width: 90%;
    }

	.text-left {
		font-size: 14px;
	}

    .text-left, 
    .text-right {
        text-align: center;
    }

    .divider {
        margin: auto 0;
		height: 120px;
    }

    .info-boxes {
        flex-direction: row;
        gap: 30px;
        width: 85%;
    }

    .info-box {
        width: 80px;
        padding: 15px;
    }

    /* 메인 섹션 */
    .info-section {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .left-column, 
    .right-column {
		margin: 0 auto;
        width: 80%;
    }

    .news-notice ul,
    .main-activities ul {
        font-size: 14px;
    }

    .exchange-box {
        height: 100px;
    }

	.header-overlay:hover .dropdown-background {
		height: 0;
	}
}