/* Terms and Privacy Policy Styles */

.terms-content,
.privacy-content {
  /*font-family: "Inter", sans-serif;*/
  line-height: 1.7;
  color: #333;
}

.last-updated {
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 15px;
}

.section-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main-color);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #e74c3c;
}

.section-content {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.subsection {
  background: #f8f9fa;
  border-left: 4px solid var(--main-color);
  padding: 20px;
  margin: 15px 0;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.subsection:hover {
  background: #e3f2fd;
  border-left-color: #2196f3;
  transform: translateX(5px);
}

.subsection-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.subsection-content {
  font-size: 15px;
  margin-bottom: 0;
  color: #555;
}

.agreement-notice,
.contact-notice {
  border: 2px solid var(--main-color);
  transition: all 0.3s ease;
}

.agreement-notice:hover,
.contact-notice:hover {
  border-color: #2980b9;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
}

.privacy-intro {
  background: linear-gradient(135deg, var(--main-color), #2980b9) !important;
  border: none;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.privacy-intro h4 {
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-content,
  .privacy-content {
    padding: 0 15px;
  }

  .section-title {
    font-size: 20px;
  }

  .subsection-title {
    font-size: 16px;
  }

  .subsection {
    margin-left: 0;
    padding: 15px;
  }

  .section-content,
  .subsection-content {
    font-size: 14px;
  }
}

/* Print Styles */
@media print {
  .terms-content,
  .privacy-content {
    color: #000;
  }

  .subsection {
    background: #fff;
    border: 1px solid #ccc;
  }

  .agreement-notice,
  .contact-notice,
  .privacy-intro {
    background: #f5f5f5 !important;
    color: #000 !important;
  }
}

/* Accessibility Improvements */
.section-title:focus,
.subsection-title:focus {
  outline: 2px solid var(--main-color);
  outline-offset: 2px;
}

/* Smooth Scrolling for Anchor Links */
html {
  scroll-behavior: smooth;
}

/* Link Styling */
.terms-content a,
.privacy-content a {
  color: var(--main-color);
  text-decoration: none;
  border-bottom: 1px dotted var(--main-color);
  transition: all 0.3s ease;
}

.terms-content a:hover,
.privacy-content a:hover {
  color: #2980b9;
  border-bottom-style: solid;
}
