/* Policy Page Styles */
.policy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero-section {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
  color: white;
  border-radius: 15px;
  margin-bottom: 3rem;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.policy-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.policy-section {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.policy-header {
  background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.policy-header i {
  font-size: 2rem;
}

.policy-header h2 {
  font-size: 1.3rem;
  margin: 0;
}

.policy-body {
  padding: 1.5rem;
}

.policy-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-body li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
}

.policy-body li:last-child {
  border-bottom: none;
}

.policy-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.policy-body li:hover {
  background: #f8f9fa;
  margin: 0 -1.5rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
}

/* Contact Info Section */
.contact-info {
  text-align: center;
  background: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.contact-btn:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
}

.contact-btn i {
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stagger animation for policy sections */
.policy-section:nth-child(1) { animation: slideInLeft 0.6s ease; }
.policy-section:nth-child(2) { animation: slideInLeft 0.6s ease 0.1s both; }
.policy-section:nth-child(3) { animation: slideInLeft 0.6s ease 0.2s both; }
.policy-section:nth-child(4) { animation: slideInLeft 0.6s ease 0.3s both; }
.policy-section:nth-child(5) { animation: slideInLeft 0.6s ease 0.4s both; }
.policy-section:nth-child(6) { animation: slideInLeft 0.6s ease 0.5s both; }

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .policy-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .policy-header {
    padding: 1rem;
  }
  
  .policy-header h2 {
    font-size: 1.1rem;
  }
  
  .policy-body {
    padding: 1rem;
  }
  
  .contact-info {
    padding: 2rem 1rem;
  }
  
  .contact-info h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .policy-container {
    padding: 1rem;
  }
  
  .hero-section {
    padding: 2rem 1rem;
  }
  
  .hero-section h1 {
    font-size: 1.5rem;
  }
  
  .policy-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .policy-header i {
    font-size: 1.5rem;
  }
  
  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Print styles */
@media print {
  .policy-container {
    max-width: none;
    padding: 0;
  }
  
  .hero-section {
    background: #f0f0f0 !important;
    color: #333 !important;
  }
  
  .policy-section {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .contact-info {
    display: none;
  }
} 