* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    overflow-x: hidden;
}

/* Header global */
.header {
    background: transparent; /* Assurez-vous que cela correspond à ce que vous voulez */
    padding: 0;
    border-bottom: none;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

/* Logo */
.logo {
    width: 160px;
    margin-left: 30px;
    cursor: pointer;
}

.navbar {
	width: 100%;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 2;
}

.navbar_menu {
	list-style: none;
	display: flex;
	margin: 0;
	padding-left: 0;
    margin-right: 30px;
}

.navbar_menu li {
	padding: 0px 20px;
}

.navbar_icons {
	list-style: none;
	display: flex;
	color: var(--icons-color);
	margin: 0;
	padding-left: 0;
}

.navbar_icons li {
	padding: 8px 12px;
	margin: 0;
}

.navbar ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    font-weight: 600;
    padding: 15px;
}

.navbar ul li a:hover {
    background: rgba(0, 0, 0, 0.3); 
    transition: 0.6s;
    color: black;
	border-radius: 3px;
}

.navbar_toggleBtn {
	position: absolute;
	right: 15px;
    display: none; /* 기본 상태에서는 햄버거 메뉴 숨김 */
    cursor: pointer; /* 마우스 오버 시 포인터 모양 변경 */
    padding: 10px;
}

.navbar_toggleBtn div {
    width: 25px; /* 가로줄 너비 */
    height: 2px; /* 가로줄 높이 */
    background-color: rgb(10, 10, 15); 
    margin: 6px 0; /* 상하 마진 설정 (줄 간격) */
}

@media screen and (max-width: 1000px) {
	.navbar {
		flex-direction: column;
		align-items: flex-start;
		margin: 0;
	}
	.navbar_menu {
		display: none;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	.navbar_menu li {
		width: 100%;
		text-align: center;
		padding: 13px;
	}
	.navbar_toggleBtn {
		display: block;
	}
	.navbar_menu.active,
	.navbar_icons.active {
		display: flex;
	}
}

.content {
    width: 100%;
    color: white;
    text-align: center;
    z-index: 2;
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 20px;
}

.content h1 {
    margin-top: 0;
    font-size: 60px;
    font-weight: 200;
}

button {
    width: 200px;
    padding: 15px;
    margin: 20px 5px;
    text-align: center;
    border-radius: 25px;
    color: black;
    border: 2px;
    font-size: 20px;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background: rgb(0, 192, 226);
    transition: 0.5s;
    color: white;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    padding: 60px 20px;
    text-align: center;
}

.section img {
    border-radius: 60px;
}

.section h1 {
    margin-bottom: 20px;
    font-size: 70px;
    text-align: center;
}


.section h3 {
    text-align: left;
}

.section p {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

.section button {
    color: rgb(140, 91, 187);
}
