@import url("global.css");

.banner {
    position: relative;
    width: 100%;
    height: 435px;
    background: url("../img/bannerNosotros.jpg") no-repeat center center/cover; /* Reemplaza con tu imagen */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.law-section {
  padding: 50px 10%;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.law-section h2 {
  font-size: 2rem;
  color: #21A59A; /* azul corporativo */
  text-align: center;
  margin-bottom: 10px;
}

.law-section .intro-text {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.law-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.law-list li {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.law-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.law-list i {
  font-size: 1.3rem;
  color: #21A59A;
}