/* Container */
.terms-privacy-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px 20px;
  font-family: 'Roboto', sans-serif;
  color: #222;
  line-height: 1.6;
  background-color: white;
}

/* Main Sections */
.terms-content,
.privacy-content {
  margin-bottom: 60px;
  border: 2px solid #CC7700;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
  background: #fafafa;
}

/* Headers */
.terms-header h1,
.privacy-header h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #cc7700; /* RiK amber accent */
  margin-bottom: 10px;
  border-bottom: 3px solid #cc7700;
  padding-bottom: 8px;
}

.terms-header p,
.privacy-header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

/* Section Titles */
.terms-section h2,
.privacy-section h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #333;
}

/* Paragraphs */
.terms-section p,
.privacy-section p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 18px;
}

/* Links */
.terms-section a,
.privacy-section a {
  color: #cc7700;
  text-decoration: none;
  border-bottom: 1px dotted #cc7700;
  transition: color 0.3s ease;
}

.terms-section a:hover,
.privacy-section a:hover {
  color: #995900;
  border-bottom-style: solid;
}

/* Responsive */
@media (max-width: 600px) {
  .terms-privacy-page {
    padding: 0 15px;
  }

  .terms-content,
  .privacy-content {
    padding: 20px 15px;
  }

  .terms-header h1,
  .privacy-header h1 {
    font-size: 2rem;
  }

  .terms-header p,
  .privacy-header p {
    font-size: 1rem;
  }

  .terms-section h2,
  .privacy-section h2 {
    font-size: 1.3rem;
  }

  .terms-section p,
  .privacy-section p {
    font-size: 0.95rem;
  }

  .terms-section a,
  .privacy-section a {
    word-break: break-word; /* Ensures long URLs wrap properly */
  }
}
