/* terms.css - Specific styles for Terms & Conditions page */
/* This file should be linked AFTER style.css in your HTML */

/* Terms Page Container */
.terms-page {
  padding: 100px 0 60px;
  background-color: var(--dark);
}

.terms-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.terms-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: white;
}

.last-updated {
  color: var(--gray);
  font-style: italic;
  font-size: 0.9rem;
}

/* Terms Content Styling */
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

.terms-content section {
  margin-bottom: 40px;
}

.terms-content h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
  position: relative;
  padding-left: 25px;
}

.terms-content h2:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

.terms-content p {
  margin-bottom: 15px;
}

.terms-content ul {
  margin: 15px 0;
  padding-left: 20px;
  list-style: none;
}

.terms-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.terms-content li:before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--primary);
  font-weight: bold;
}

.terms-content strong {
  color: white;
  font-weight: 600;
}

.terms-content address {
  font-style: normal;
  margin-top: 10px;
  line-height: 1.6;
}

/* Links in Terms Content */
.terms-content a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.terms-content a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .terms-page {
    padding: 80px 0 40px;
  }
  
  .terms-header h1 {
    font-size: 2rem;
  }
  
  .terms-content h2 {
    font-size: 1.3rem;
    padding-left: 20px;
  }
}

@media (max-width: 576px) {
  .terms-page {
    padding: 70px 0 30px;
  }
  
  .terms-header {
    margin-bottom: 30px;
  }
  
  .terms-content h2:before {
    width: 6px;
    height: 6px;
  }
  
  .terms-content li {
    padding-left: 20px;
  }
}