/* 추가 페이지 스타일 */

/* 페이지 배너 */
.page-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/banner-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 8rem 2rem 5rem;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.3) 0%, rgba(2, 136, 209, 0.3) 100%);
  z-index: 0;
}

.page-banner .banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.page-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: white;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

.breadcrumb i {
  font-size: 0.7rem;
}
/* 컨테이너 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* About 페이지 스타일 */
.about-section {
  padding: 5rem 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.vision-mission {
  background-color: var(--background-light);
  padding: 5rem 0;
}

.vision-mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.vision-box,
.mission-box {
  flex: 1;
  min-width: 300px;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.vision-box h2,
.mission-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.core-values {
  padding: 5rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.value-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.history {
  background-color: var(--background-light);
  padding: 5rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 120px;
  width: 2px;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: 150px;
  margin-bottom: 3rem;
}

.timeline-dot {
  position: absolute;
  left: 116px;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.timeline-date {
  position: absolute;
  left: 0;
  width: 100px;
  text-align: right;
  font-weight: 700;
  color: var(--primary-dark);
}

.timeline-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.team {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  padding: 0 1.5rem;
}

.member-role {
  color: var(--primary-color);
  font-weight: 500;
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
}

.member-desc {
  color: var(--text-light);
  padding: 0 1.5rem 1.5rem;
}

.partners {
  background-color: var(--background-light);
  padding: 5rem 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner-item {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  height: 120px;
  /* 고정 높이 */
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* 이미지 넘침 방지 */
}

.partner-item img {
  /* max-width: 150px;
    max-height: 80px; */
  amax-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 서비스 페이지 스타일 */
.service-overview {
  padding: 5rem 0;
}

.overview-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.service-nav-item {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  transition: var(--transition);
}

.service-nav-item:hover {
  transform: translateY(-10px);
  background-color: var(--primary-color);
  color: white;
}

.service-nav-item:hover .nav-icon {
  color: white;
}

.nav-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-nav-item h3 {
  font-size: 1.5rem;
}

.service-section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--background-light);
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-image {
  flex: 1;
  min-width: 300px;
}

.service-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-details {
  flex: 1;
  min-width: 300px;
}

.service-details h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.service-details p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.feature-list {
  margin-bottom: 2rem;
}

.feature-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.tech-specs {
  background-color: var(--background-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.tech-specs h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.tech-specs table {
  width: 100%;
  border-collapse: collapse;
}

.tech-specs th,
.tech-specs td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.tech-specs th {
  width: 30%;
  color: var(--text-color);
  font-weight: 500;
}

.tech-specs td {
  color: var(--text-light);
}

.pricing {
  background-color: var(--background-light);
  padding: 5rem 0;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.pricing-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  background-color: var(--primary-light);
  padding: 2rem;
  text-align: center;
}

.pricing-card.featured .pricing-header {
  background-color: var(--primary-color);
  color: white;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-features {
  padding: 2rem;
}

.pricing-features ul {
  margin-bottom: 2rem;
}

.pricing-features li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.pricing-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.case-studies {
  padding: 5rem 0;
}

.case-study-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-study-image {
  flex: 1;
  min-width: 300px;
}

.case-study-image img {
  border-radius: 8px;
}

.case-study-content {
  flex: 1;
  min-width: 300px;
}

.case-study-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.case-meta {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.case-results {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

.result-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.result-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.result-label {
  color: var(--text-light);
}

.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/cta-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* 문의하기 페이지 스타일 */
.contact-page {
  padding: 5rem 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-form-container {
  flex: 2;
  min-width: 300px;
}

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.contact-form-container>p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  flex: 1;
  min-width: 200px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.required {
  color: red;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-group label {
  margin-bottom: 0;
}

.contact-info-container {
  flex: 1;
  min-width: 300px;
}

.contact-info {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  width: 30px;
  text-align: center;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.social-links {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.social-links h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: white;
}

.map-section {
  padding: 5rem 0;
  background-color: var(--background-light);
}

.map-container {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.directions h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  text-align: center;
}

.direction-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.direction-item {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  flex: 1;
  max-width: 400px;
}

.direction-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 1.5rem;
}

.direction-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.faq-section {
  padding: 5rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 2.5rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-dot {
    left: 26px;
  }

  .timeline-date {
    position: static;
    text-align: left;
    margin-bottom: 0.5rem;
  }
}