/* Content Container */
.content-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.hero-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 50px;
  background-color: #ffffff; /* 전체 흰색 배경 */
  gap: 50px;
}

.hero-content {
  max-width: 600px;
}

.hero-subtitle {
  color: #D32F2F; /* 붉은색 */
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #161616;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555555;
}

.hero-btn {
  background-color: transparent; /* 배경 없앰 */
  color: #161616;               /* 글자색 */
  padding: 10px 22px;
  border: 2px solid #bbbaba;    /* 테두리 색상 */
  border-radius: 12px;           /* 라운드 */
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.hero-btn:hover {
  background-color: #e9e7e7;     /* 호버 시 배경 색상 */
  color: #161616;                  /* 글자색 변경 */
}

.hero-image img {
  width: 550px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-main {
    flex-direction: column-reverse;
    text-align: center;
    padding: 80px 30px;
  }

  .hero-image img {
    width: 100%;
    max-width: 400px;
  }
}








.container-header {
  text-align: center;
  margin: 80px 0 60px;
}

.container-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #161616;
  margin-bottom: 15px;
}

.container-desc {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}


  /* Responsive */
  @media (max-width: 1024px) {
    .hero {
      flex-direction: column;
      text-align: center;
      gap: 40px;
    }

    .hero-text {
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .company-logos {
      gap: 20px;
    }

    .nav-center ul {
      gap: 15px;
    }

    .sub-navbar ul {
      gap: 20px;
    }
  }


  .hero-service { display: flex; justify-content: space-between; align-items: flex-start; padding: 100px 50px; gap: 50px; }
  .service-content { width: 100%; max-width: 100%; }
  .service-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
  .service-content p { font-size: 1.2rem; margin-bottom: 30px; }
  .service-image img { width: 100%; max-width: 100%; border-radius: 10px; }
  .service-image { width: 100%; display: flex; justify-content: center; align-items: flex-start; }








/* fnList Grid Layout */
.fnList ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3열 */
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fnList li {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s;
}

.fnList li:hover {
  transform: translateY(-5px);
}

.fnList dt {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fnList dd p {
  margin: 4px 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .fnList ul {
    grid-template-columns: repeat(2, 1fr); /* 2열 */
  }
}

@media (max-width: 720px) {
  .fnList ul {
    grid-template-columns: 1fr; /* 1열 */
  }
}