/* Legal Pages Styling */

/* Legal Header */
.legal-header {
  background: linear-gradient(135deg, #2d5f2e 0%, #1f4020 100%);
  padding: 10rem 0 4rem 0;
  position: relative;
}

.legal-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  text-align: center;
}

.legal-header-title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.legal-header-date {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-style: italic;
}

/* Legal Content Section */
.legal-content {
  background-color: #fff;
  padding: 6rem 0;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Legal Introduction */
.legal-intro {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #f5f5f5;
  border-left: 5px solid #2d5f2e;
  border-radius: 8px;
}

.legal-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.9;
  margin: 0;
  font-weight: 300;
}

/* Legal Sections */
.legal-section {
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d5f2e;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.legal-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  margin-top: 1.8rem;
}

.legal-section p {
  font-size: 1rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section strong {
  color: #2d5f2e;
  font-weight: 600;
}

/* Lists in Legal Content */
.legal-section ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.legal-section ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
}

.legal-section ul li::before {
  content: '"';
  position: absolute;
  left: 0.5rem;
  color: #2d5f2e;
  font-weight: 700;
  font-size: 1.3rem;
}

/* Contact Details Box */
.contact-details {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 10px;
  border-left: 4px solid #2d5f2e;
}

.contact-details p {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.contact-details p strong {
  color: #2d5f2e;
  font-weight: 600;
}

.contact-details a {
  color: #2d5f2e;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-details a:hover {
  color: #1f4020;
  text-decoration: underline;
}

/* Links in Legal Content */
.legal-section a {
  color: #2d5f2e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: #1f4020;
  text-decoration: underline;
}

/* Responsive Design for Legal Pages */
@media (max-width: 1024px) {
  .legal-header {
    padding: 9rem 0 3.5rem 0;
  }

  .legal-header-content {
    padding: 0 2rem;
  }

  .legal-header-title {
    font-size: 3rem;
  }

  .legal-header-date {
    font-size: 1rem;
  }

  .legal-container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .legal-header {
    padding: 8rem 0 3rem 0;
  }

  .legal-header-title {
    font-size: 2.5rem;
  }

  .legal-header-date {
    font-size: 0.95rem;
  }

  .legal-content {
    padding: 4rem 0;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .legal-section h3 {
    font-size: 1.2rem;
  }

  .legal-intro {
    padding: 1.5rem;
  }

  .legal-intro p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .legal-header {
    padding: 7rem 0 2.5rem 0;
  }

  .legal-header-title {
    font-size: 2rem;
  }

  .legal-header-date {
    font-size: 0.9rem;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }

  .legal-section h3 {
    font-size: 1.1rem;
  }

  .legal-section p {
    font-size: 0.95rem;
  }

  .legal-section ul li {
    font-size: 0.95rem;
    padding-left: 1.5rem;
  }

  .legal-intro {
    padding: 1.25rem;
  }

  .legal-intro p {
    font-size: 0.95rem;
  }

  .contact-details {
    padding: 1.25rem;
  }

  .contact-details p {
    font-size: 0.95rem;
  }
}
