:root {
  --primary-color: #E33220;
  --black: #000;
  --white: #fff;
  --font-main: 'Montserrat', sans-serif;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('../imagenes/seguridadhome2.webp') no-repeat center 20%/contain;
  background-size: cover;
  background-position: center top;
  padding-top: 5rem; /* Espacio para que no se corte por el menú */
  clip-path: ellipse(150% 100% at 50% 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.politica {
  background-color: #ffffff;
  padding: 4rem 1rem;
  color: #333;
  line-height: 1.8;
}

.politica .container {
  max-width: 900px;
  margin: 0 auto;
}

.politica-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.politica h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.politica p {
  margin-bottom: 1.2rem;
  text-align: justify;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .politica {
    padding: 2rem 1rem;
  }

  .politica-title {
    font-size: 1.8rem;
  }

  .politica h2 {
    font-size: 1.2rem;
  }

  .politica p {
    font-size: 0.95rem;
  }
}
