

.hero-section {
    background: linear-gradient(135deg, #171738 0%, #300574 100%);
    padding: 180px 0;  /* Increased padding top and bottom */
    position: relative;
    overflow: hidden;
    min-height: 20vh;  /* Minimum height to ensure proper spacing */
    display: flex;     /* Enable flexbox for vertical centering */
    align-items: center; /* Center content vertically */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(135deg, rgba(63, 43, 150, 0.85), rgba(45, 27, 105, 0.864)), url(../../assets/images/legal/hero-legal.webp);
  background-size: cover;
  background-position: center;
  animation: zoomBg 20s infinite alternate;
}

.hero-container {
   display: flex;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    color: white;
    text-align: center;  /* Center text content */
    margin: 0 auto;      /* Center the content block */
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;  /* Center the subtitle */
    opacity: 1;
    transform: translateY(30px);
}


/* Policy Page Styles */
.policy-page {
    padding: 120px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
}

.policy-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 40px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    color: #513BA3;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.policy-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section ul li {
    color: #666;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 100px 15px 60px;
    }
    
    .policy-container {
        padding: 20px;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
}