* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
li {
  list-style: none;
}
a {
  color: #333;
  text-decoration: none;
}
/* 전체 레이아웃 */
.wrap {
  width: 1200px;
  margin: 0 auto;
}
/* 상단 */
.top-bar {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
/* 네비게이션 */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.menu {
  display: flex;
  gap: 25px;
}
.icons {
  display: flex;
  gap: 15px;
  font-size: 18px;
}
/* 히어로 영역 */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  padding: 80px 0;
}
.hero-text {
  margin-left: 80px;
}
.hero-text h2 {
  font-size: 32px;
  margin: 10px;
}
.hero-text p {
  margin-bottom: 20px;
}
.hero-text button {
  padding: 10px 20px;
  background-color: #ff6543;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}
.hero-img {
  margin-right: 150px;
  position: relative;
}
.hero-img::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(200, 200, 200, 0.141); /* 투명 */
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.hero-img img {
  mix-blend-mode: multiply;
  width: 350px;
  position: relative;
  z-index: 1;
}
/* 카테고리 영역 */
.categories {
  background-color: #f9f9f9;
  padding: 40px 0;
  margin-top: 40px;
}
.categories h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}
/* 카테고리 6개 가로 정렬 */
.categories-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
/* 카드 */
.card {
  width: calc(100% / 6 - 20px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  transition: 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #f8f8f8;
  border-radius: 10px;
}
.card:hover {
  transform: translateY(-5px);
}
.card img {
  max-width: 100%;
  height: 80px;
}
.card:nth-child(2) img {
  width: 100%;
}
.card p {
  margin-top: 10px;
}
/* 푸터 */
footer {
  margin: 80px;
  border-top: 1px solid #ddd;
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-text {
  text-decoration: underline;
}
.footer-col {
  font-weight: bold;
}
.footer-col p {
  font-size: 12px;
}
.copyright {
  text-align: right;
  font-size: 12px;
  color: #777;
  
}
.footerextra {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
}
.footerextra img {
  height: 1em;
  margin-left: 8px;
  vertical-align: middle;
  opacity: 0.6;
}
