/* 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;
  margin-top: 50px;
}

.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) {
  .service-overview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* DX Background Section */
.dx-background-section {
  padding: 60px 0;
}

.highlight-banner {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  padding: 1rem 2rem;
  border-radius: 25px;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 5px 15px rgb(255 215 0 / 30%);
}

.highlight-banner h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
}

.dx-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.importance-header {
  text-align: center;
  margin-bottom: 3rem;
}

.importance-header p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.importance-header h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
}

.importance-reasons {
  display: grid;
  gap: 1.5rem;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgb(255 255 255 / 95%);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
  backdrop-filter: blur(10px);
}

.reason-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.reason-content h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.reason-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.challenge-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (width <= 768px) {
  .dx-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .challenges-grid {
    grid-template-columns: 1fr;
  }

  .reason-item {
    flex-direction: column;
    text-align: center;
  }

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