/* Privacy Policy Page Styling */

/* Inherit from the main stylesheet */
@import url(../style.css);

.crew-header {
  padding: 10px 0 40px;
  margin-top: 80px;
  background: var(--white);
}
.crew-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.crew-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 5px;
}

/* Privacy Policy Container */
.privacy-container {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.privacy-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.privacy-content p, .privacy-content li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.privacy-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.privacy-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.privacy-content a:hover {
  text-decoration: underline;
}
