/* components/TermsContent/TermsContent.css */
.terms-content {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.terms-intro {
  margin-bottom: 50px;
  padding: 30px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-intro p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--black-color);
  margin: 0;
}

.terms-section {
  margin-bottom: 40px;
  padding: 30px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.terms-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.terms-section h2 {
  color: var(--theme-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.terms-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--theme-gradient);
}

.terms-section p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--black-color);
  margin-bottom: 15px;
}

.terms-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.terms-section li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--black-color);
  margin-bottom: 8px;
  position: relative;
}

.terms-section li::before {
  content: '•';
  color: var(--theme-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

@media (max-width: 1366px) {
  .terms-content {
    padding: 80px 0;
  }
  
  .terms-section h2 {
    font-size: 22px;
  }
  
  .terms-intro p,
  .terms-section p,
  .terms-section li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .terms-intro,
  .terms-section {
    padding: 20px;
  }
  
  .terms-section h2 {
    font-size: 20px;
  }
}