/* Policy Pages Common Styles */
.policy-page {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.policy-page .policy-hero {
  background: rgba(240, 20, 20, 0.1);
  color: var(--foreground);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.policy-page .policy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/uploads/slider_image/about-tp-bnr.png') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.policy-page .policy-hero-content {
  position: relative;
  z-index: 2;
}

.policy-page .policy-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.policy-page .policy-hero p {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--foreground);
  max-width: 600px;
  margin: 0 auto;
}

/* Main Policy Section */
.policy-page .policy-main {
  padding: 80px 0;
  background: var(--background);
}

.policy-page .policy-container {
  background: var(--card);
  border-radius: 15px;
  padding: 50px;
  border: 1px solid var(--border);
}

/* Typography */
.policy-page .policy-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.policy-page .policy-subtitle {
  color: var(--muted-foreground);
  font-size: 1.1rem;
}

.policy-page .section-title {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  padding: 15px 20px;
  background: var(--secondary);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.policy-page .subsection-title {
  color: var(--foreground);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.policy-page .policy-text {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.policy-page .policy-text a {
  color: var(--primary);
  text-decoration: none;
}

.policy-page .policy-text a:hover {
  text-decoration: underline;
}

/* Lists */
.policy-page .policy-list {
  padding-left: 20px;
  margin-bottom: 1.5rem;
}

.policy-page .policy-list li {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
  list-style: disc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .policy-page .policy-hero {
    padding: 60px 0;
  }
  
  .policy-page .policy-hero h1 {
    font-size: 2rem;
  }
  
  .policy-page .policy-hero p {
    font-size: 1.1rem;
  }
  
  .policy-page .policy-main {
    padding: 60px 0;
  }
  
  .policy-page .policy-container {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .policy-page .policy-title {
    font-size: 2rem;
  }
  
  .policy-page .section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .policy-page .policy-hero {
    padding: 40px 0;
  }
  
  .policy-page .policy-hero h1 {
    font-size: 1.8rem;
  }
  
  .policy-page .policy-main {
    padding: 40px 0;
  }
  
  .policy-page .policy-container {
    padding: 25px 15px;
    margin: 0 10px;
  }
  
  .policy-page .policy-title {
    font-size: 1.8rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.policy-page .fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Custom Scrollbar */
.policy-page ::-webkit-scrollbar {
  width: 8px;
}

.policy-page ::-webkit-scrollbar-track {
  background: var(--secondary);
}

.policy-page ::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.policy-page ::-webkit-scrollbar-thumb:hover {
  background: #d40e0e;
}
