/* ChatGPT Service Page Specific Styles */

/* Page Background */
body {
  background-image: url("/images/other_pages_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 20%);
  z-index: -1;
}

.hero {
  padding: 30px 0 20px;
}

.hero-content {
  text-align: center;
}

.hero-content h2 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  margin-bottom: 1.5rem;
}

.chatgpt-service-content {
  padding: 40px 0;
}

.service-overview {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

.service-section {
  background: rgb(255 255 255 / 95%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
  backdrop-filter: blur(10px);
}

.service-section.highlight-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid #667eea;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.service-icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.service-header h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0;
  font-weight: 600;
}

.service-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: justify;
}

/* ChatGPT Service Page Responsive */
@media (width <= 768px) {
  .hero {
    display: none; /* 상단 여백 제거 */
  }

  .chatgpt-service-content {
    padding-top: 20px;
  }

  .service-overview {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 5px; /* 좌우 여백 최소화 */
  }

  .service-section {
    padding: 1.25rem 1rem; /* 내부 여백 축소 */
    border-radius: 10px;
  }

  .service-header h3 {
    font-size: 1.3rem;
  }

  .dx-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 10px;
  }

  .challenges-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .reason-item {
    flex-direction: column;
    text-align: center;
    margin: 0 10px;
  }

  .importance-header h3 {
    font-size: 1.5rem;
  }
}
