/* Privacy Policy Page Styles */
.policy-content {
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
  background: #232323;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.policy-content h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}

.policy-section {
  margin-bottom: 2.5rem;
  padding: 0;
}

.policy-section h2 {
  font-size: 1.5rem;
  color: #E53935;
  margin-bottom: 1rem;
  text-align: left;
  border-bottom: 2px solid #E53935;
  padding-bottom: 0.5rem;
}

.policy-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.policy-section .intro {
  font-size: 1.1rem;
  color: #f0f0f0;
  font-weight: 500;
  margin-bottom: 2rem;
}

.policy-section ul {
  margin: 1rem 0 1rem 2rem;
  padding: 0;
}

.policy-section li {
  margin-bottom: 0.5rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.policy-section a {
  color: #E53935;
  text-decoration: none;
  transition: color 0.2s;
}

.policy-section a:hover {
  color: #ff4c4c;
  text-decoration: underline;
}

.contact-email {
  text-align: center;
  margin: 1.5rem 0;
}

.contact-email a {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: rgba(229, 57, 53, 0.1);
  border-radius: 0.5rem;
  display: inline-block;
}

.contact-email a:hover {
  background: rgba(229, 57, 53, 0.2);
}

.policy-section .btn {
  display: block;
  text-align: center;
  margin: 2rem auto 0;
  max-width: 300px;
}

/* Active navigation state */
.nav-links a.active,
.footer-links a.active {
  color: #E53935;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 900px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .policy-content h1 {
    font-size: 2rem;
  }
  
  .policy-section h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 700px) {
  .policy-content {
    padding: 1rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .policy-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .policy-section {
    margin-bottom: 2rem;
  }
  
  .policy-section h2 {
    font-size: 1.2rem;
  }
  
  .policy-section .intro {
    font-size: 1rem;
  }
  
  .policy-section ul {
    margin-left: 1.5rem;
  }
}

@media (max-width: 500px) {
  .policy-content h1 {
    font-size: 1.5rem;
  }
  
  .policy-section h2 {
    font-size: 1.1rem;
  }
  
  .policy-section {
    margin-bottom: 1.5rem;
  }
  
  .container {
    padding: 0 0.8rem;
  }
} 