
/* Individual card */
.legal-section .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #fd7a01;
}

.legal-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Title */
.legal-section .card h3 {
  color: #fd7a01;
  font-size: 18px;
  font-weight: 600;
}

/* Button */
.legal-section .download-btn {
  background: #fd7a01;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.legal-section .download-btn:hover {
  background: #e75b10;
}

/* Divider line */
.legal-section .divider {
  margin: 15px 0;
  border-top: 2px solid #f0f0f0;
}

/* Details list */
.legal-section .details {
  list-style: none;
  text-align: left;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  padding-left: 10px;
}

.legal-section .details strong {
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
 .legal-section .card {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 600px) {
 .legal-section .card {
    padding: 25px 20px;
  }
 .legal-section .card h3 {
    font-size: 16px;
  }
 .legal-section .download-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
    .banner .youtube-container {
        aspect-ratio: 0 !important;
        height: 100% !important;
    }

  .legal-section  .card-container.bd-container{
padding: 15px !important;
    }
}