.instalaciones-section {
    width: 100%;
    background: linear-gradient(135deg, #ffffff, #ffbb00, #1044ff, #ff6e6e);
    font-family: 'Segoe UI', sans-serif;
  }
  
  .instalacion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .instalacion.reverse {
    flex-direction: row-reverse;
  }
  
  .instalacion-texto {
    flex: 1;
    min-width: 300px;
  }
  
  .instalacion-texto strong {
    font-size: 2rem;
    color: #0d2f45;
    margin-bottom: 15px;
  }
  
  .instalacion-texto p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    text-align: justify;
  }
  
  .instalacion-img {
    flex: 1;
    min-width: 300px;
  }
  
  .instalacion-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  