/* 공통 박스모델링 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 상단 가로줄 (선택사항 제거 가능) */
.top-stripe {
  height: 2px; /* 두께, 원래 4px의 반 */
  background-color: #4EAE34;
  width: 100%;
}

/* 바디 */
body {
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #f8f8f8;
  padding: 50px;
  line-height: 1.6;
  color: #333;
}

/* 헤더 */
header {
  position: relative;
  padding: 40px 20px;
  background-color: #1C1C1C; /* 요청하신 색상 */
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* 로고 위치 조정이 필요하면 아래 */
.logo-box {
  position: absolute;
  top: 20px;
  left: 20px;
}
.logo {
  height: 50px;
}
header h1 {
  font-size: 2.8em;
  margin-left: 80px; /* 왼쪽 여백 조정 */
}
header p {
  margin-top: 10px;
  margin-left: 80px;
  font-size: 1em;
}

/* 네비게이션 */
nav {
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
nav a {
  margin: 0 25px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #333;
  transition: color 0.3s, transform 0.3s;
}
nav a:hover {
  color: #1C1C1C; /* 강조 색상 변경 가능 */
  transform: translateY(-2px);
}

/* 섹션 */
section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #1C1C1C;
  border-bottom: 2px solid #ececec;
  padding-bottom: 10px;
}
p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* 버튼 스타일 예시 (추가가 필요할 시) */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #1C1C1C; /* 대표색 사용 */
  color: #fff;
  font-size: 1.25em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn:hover {
  background-color: #000; /* 호버 시 더 어둡게 또는 다른 색상 */
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0,0,0,0.3);
}

/* 푸터 */
footer {
  background-color: #1C1C1C; /* 푸터 배경도 요청시 변경 가능 */
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  margin-top: 60px;
}
@media(max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }
  section {
    margin: 30px 20px;
  }
/* 모바일 최적화 */
@media(max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }
  section {
    margin: 30px 20px;
  }
}
