/* Page Banner */
.page-banner {
    position: relative;
    padding: 4rem 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAwIiBoZWlnaHQ9IjQwMCIgdmlld0JveD0iMCAwIDgwMCA0MDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjgwMCIgaGVpZ2h0PSI0MDAiIGZpbGw9IiMzMzMiLz48Y2lyY2xlIGN4PSI0MDAiIGN5PSIyMDAiIHI9IjE1MCIgZmlsbD0iIzIyMiIvPjxjaXJjbGUgY3g9IjQwMCIgY3k9IjIwMCIgcj0iMTIwIiBmaWxsPSIjNDQ0Ii8+PHBhdGggZD0iTTMwMCAxNjAgTDUwMCAxNjAgTDQ4MCAxODAgTDMyMCAxODAgWiIgZmlsbD0iIzU1NSIvPjxwYXRoIGQ9Ik0zMjAgMjIwIEw0ODAgMjIwIEw0NjAgMjQwIEwzNDAgMjQwIFoiIGZpbGw9IiM1NTUiLz48L3N2Zz4=');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.page-banner .container {
  position: relative;
  z-index: 12;
}

.page-banner h1 {
      font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      font-size: clamp(2.5rem, 5vw, 4rem);
      text-align: center;
      color: var(--color-white);
}

.breadcrumb {
      display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
    color: var(--color-white);
    flex-wrap: wrap;
}

.breadcrumb a {
      color: var(--color-white);
      opacity: 0.8;
      transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-secondary);
}
.breadcrumb span {
  opacity: 0.7;
}
/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem;
}

.legal-card {
    background-color: #F7F7F7;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    margin-bottom: 2rem;
}

.legal-sections {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.legal-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
}

.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.section-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 600;
    position: relative;
}

.section-header h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-secondary);
}

.section-content {
    padding-left: calc(30px + 1rem);
}

.section-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
    color: var(--color-dark);
}

.section-content p:last-child {
    margin-bottom: 0;
}

.section-content a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-content a:hover {
    text-decoration: underline;
}


@media only screen and (max-width: 767px){

    .page-banner{
          padding: 3rem 0;
    }

}