/* Legal Pages Styles */

.page-header-legal {
  background: linear-gradient(135deg, #00294C 0%, #01366C 100%);
  position: relative;
}

.page-hero-legal {
  padding: 150px 0 80px;
  text-align: center;
  color: white;
}

.page-hero-legal h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.page-hero-legal p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Legal Content Section */
.legal-content {
  padding: 80px 0;
  background: white;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 2rem;
  color: #01366C;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #FFB506;
}

.content-wrapper h2:first-of-type {
  margin-top: 20px;
}

.content-wrapper h3 {
  font-size: 1.5rem;
  color: #01366C;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-wrapper p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-wrapper ul {
  margin-bottom: 25px;
  padding-left: 30px;
}

.content-wrapper ul li {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
}

.content-wrapper ul li::marker {
  color: #FFB506;
  font-weight: bold;
}

.content-wrapper a {
  color: #FFB506;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.content-wrapper a:hover {
  color: #01366C;
  text-decoration: underline;
}

.content-wrapper strong {
  color: #01366C;
  font-weight: 600;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  border: 2px solid #FFB506;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

.cta-box h3 {
  font-size: 1.8rem;
  color: #01366C;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 0;
}

.cta-box p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
}

.cta-box .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-box .cta-button:hover {
  background: linear-gradient(135deg, #01366C 0%, #00294C 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 181, 6, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
  .page-hero-legal h1 {
    font-size: 2.5rem;
  }

  .content-wrapper h2 {
    font-size: 1.75rem;
  }

  .content-wrapper h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .page-hero-legal {
    padding: 120px 0 60px;
  }

  .page-hero-legal h1 {
    font-size: 2rem;
  }

  .page-hero-legal p {
    font-size: 1rem;
  }

  .content-wrapper h2 {
    font-size: 1.5rem;
  }

  .content-wrapper h3 {
    font-size: 1.2rem;
  }

  .content-wrapper p,
  .content-wrapper ul li {
    font-size: 1rem;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .cta-box h3 {
    font-size: 1.5rem;
  }

  .cta-box p {
    font-size: 1rem;
  }
}
