html, body {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    min-width: 1000px;
    height: 100%;
    font-family: "Pretendard Variable", Pretendard, Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

ul {
    list-style-type: none;
}

.main-top {
    height: 100vh;
    background: url(/static/images/banner.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.main-top .content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 80px;
}

.header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 15px 80px;
    background-color: rgb(15, 82, 186);
}

.header-logo {
    margin: 0 10px;
}

.header-logo img {
    height: 40px;
}

.header > .header-nav > ul  {
    display: flex;
    gap: 60px;
    padding: 0;
    margin: 0 30px;
}

.header > .header-nav > ul > li {
    position: relative;
}

.header-nav li.dropdown {
    position: relative;
}

.header-nav .dropdown-menu {
    padding-top: 20px; /* 간격 확보용 */
    background-color: rgba(0,0,0,0);
}

.header-nav .dropdown-menu li {
    background-color: white;
}

.header > .header-nav {
    margin-left: auto;
    margin-right: auto;
}

.header > .header-nav > ul > li > a {
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-size: 24px;
    transition: 0.3s ease-in-out;
}

.header > .header-nav > ul > li > a:hover {
    opacity: 0.7;
}

.dropdown-menu {
    display: none;
    position: absolute;
    padding: 5px 0;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    flex-direction: column;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
    text-decoration: none;
    color: black;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

/* hover 시 드롭다운 표시 */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* 화살표 회전 애니메이션 */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* 드롭다운 열릴 때 화살표 회전 효과 */
.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.main-content {
    /* padding: 0; */
    margin-top: 100px;
    display: flex;
    flex: 1 1 auto; /* 남은 공간을 유동적으로 채우기 */
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    min-height: 500px;
    
    color: white;
}

.main-content > .main-text {
    margin-bottom: 40px;
}

.main-content > .main-text > h2 {
    margin: 0;
    font-size: 60px;
    /* text-align: center; */
}

.main-content > .sub-text {
    margin-bottom: 100px;
}

.main-content > .sub-text > h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.btn-text {
    height: 56px;
    padding: 12px 32px;
    border-radius: 999px;
    background-color: white;
    text-decoration: none;
    
    font-weight: 600;
    line-height: 1.5;
    color: black;
    font-size: 20px;
}

.search-container {
    margin-bottom: 50px;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
}

.search-input {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
    width: 300px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #007bff;
}

.search-button {
    padding: 12px 22px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #0056b3;
}

.footer-content {
    flex: 0 0 auto;
    padding: 25px 80px;
    font-size: 16px;
    /* color: white;
    background-color: #191919; */
    
    color: #191919;
    background-color: #dce6f5;
}

.footer-content p {
    margin: 9px;
}