/* Privacy Policy specific styles */

/* Privacy Content Styles */
.privacy-content {
  padding: 150px 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-header {
  margin-bottom: 40px;
  text-align: center;
}

.privacy-header h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.privacy-header p {
  color: #666;
  font-size: 1.1rem;
}

.policy-section {
  background-color: white;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--card-shadow);
}

.policy-section h2 {
  color: var(--primary);
  margin-bottom: 25px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

.policy-section h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.policy-section h3 {
  color: var(--primary);
  margin: 25px 0 15px;
  font-size: 1.4rem;
}

.policy-section p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

.policy-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-section ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.back-to-home {
  display: inline-block;
  margin: 20px 0 60px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.back-to-home:hover {
  color: var(--secondary);
}

/* Responsive Tweaks */
@media screen and (max-width: 768px) {
  .privacy-content {
    padding: 120px 5% 60px;
  }
  .policy-section {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 480px) {
  .privacy-header h1 {
    font-size: 2rem;
  }
  .policy-section h2 {
    font-size: 1.6rem;
  }
  .policy-section h3 {
    font-size: 1.3rem;
  }
}