/* Terms & Conditions Specific Styles */
.terms-section {
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 2rem;
  background: #bad9ce;
}

.terms-container {
  max-width: 800px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(14, 105, 115, 0.1);
  backdrop-filter: blur(10px);
}

.terms-title {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #0e6973;
  text-align: center;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.terms-updated {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #118c8c;
  text-align: center;
  margin: 0 0 2.5rem 0;
  font-style: italic;
}

.terms-content {
  line-height: 1.7;
}

.terms-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #0e6973;
  text-align: center;
  margin: 0 0 1.5rem 0;
  padding: 1.5rem;
  background: rgba(14, 105, 115, 0.05);
  border-radius: 12px;
  border-left: 4px solid #118c8c;
}

.terms-agreement {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0e6973;
  text-align: center;
  margin: 0 0 2.5rem 0;
  padding: 1.2rem;
  background: rgba(242, 187, 22, 0.1);
  border-radius: 12px;
  border-left: 4px solid #f2bb16;
}

.terms-section-item {
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(14, 105, 115, 0.1);
}

.terms-section-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.terms-section-item h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0e6973;
  margin: 0 0 1rem 0;
  letter-spacing: -0.01em;
}

.terms-section-item p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.terms-section-item p:last-child {
  margin-bottom: 0;
}

.contact-info {
  background: rgba(242, 187, 22, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #f2bb16;
  font-weight: 500;
}

.contact-link {
  color: #0e6973;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #118c8c;
  text-decoration: underline;
}

.terms-link {
  color: #0e6973;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(14, 105, 115, 0.3);
}

.terms-link:hover {
  color: #118c8c;
  border-bottom-color: #118c8c;
}

.terms-actions {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14, 105, 115, 0.1);
}

.back-btn {
  font-family: 'Inter', sans-serif;
  background: #0e6973;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(14, 105, 115, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.5px;
}

.back-btn:hover {
  background: #118c8c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 140, 140, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .terms-section {
    padding: 2rem 1rem;
  }
  
  .terms-container {
    padding: 2rem 1.5rem;
    border-radius: 15px;
  }
  
  .terms-title {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }
  
  .terms-updated {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .terms-intro {
    font-size: 1.1rem;
    padding: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  .terms-agreement {
    font-size: 1rem;
    padding: 1rem;
    margin-bottom: 2rem;
  }
  
  .terms-section-item {
    margin-bottom: 2rem;
    padding: 1rem 0;
  }
  
  .terms-section-item h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .terms-section-item p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .contact-info {
    padding: 0.8rem 1.2rem;
  }
  
  .terms-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .back-btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .terms-section {
    padding: 1.5rem 0.8rem;
  }
  
  .terms-container {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }
  
  .terms-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .terms-updated {
    font-size: 0.85rem;
  }
  
  .terms-intro {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .terms-agreement {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
  
  .terms-section-item h2 {
    font-size: 1.2rem;
  }
  
  .terms-section-item p {
    font-size: 0.95rem;
  }
  
  .contact-info {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }
  
  .back-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}
