body {
  box-sizing: border-box;
  font-family: "Noto Serif KR", "Libre Baskerville", Libre, Georgia, Times;
  font-weight: 400;
  font-style: normal;
  color: #404040;
  margin: 0;
  padding: 0;
}

.wrapper {
  max-width: 900px;
  margin: 35px auto;
  padding: 0 15px;
}

.header-worldmap {
  width: 100%;
  height: 100px;
  background-image: url('../imgs/worldmap.png');
  background-size: cover;
  background-position: center;
}

.header-content {
  /* border: 1px solid black; */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px 0;
}

.logo {
  /* border: 1px solid black; */
  width: 130px;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.header-content-title {
  /* border: 1px solid black; */
  flex-grow: 1;
  text-align: right;
  padding: 10px 0 0 0;
}

.header-content-title-sub {
  color: #ab1d1d;
  font-size: 12px;
}

/* -- <footer> --------------------------------------------------------- */
footer {
  width: 100%;
  padding: 40px 0;
  margin-top: 50px;
  border-top: 1px solid #eaeaea;
}

.footer-flag {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-flag img {
  width: 40px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 800px;
}

.footer-title {
  margin: 0;
  text-align: center;
}

.footer-title > p {
  margin: 5px 0;
}

.footer-title-main {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.footer-title-sub {
  font-size: 14px;
  font-weight: 600;
  color: #ab1d1d;
  margin-bottom: 15px;
}

.footer-title p:last-child {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* 반응형 스타일 */
@media (max-width: 300px) {
  .wrapper {
    width: 100%;
    padding: 0 10px;
  }
  
  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .header-content-title {
    width: 100%;
    text-align: center;
  }
  
  .footer-title {
    flex-flow: nowrap column;
  }
}