.vistana-section {
  padding: 60px 40px;
  background: #f9fafc;
}

.vistana-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.vistana-content {
  flex: 0 0 60%;
}

.vistana-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.vistana-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.vistana-content ul {
  margin-bottom: 25px;
}

.vistana-content ul li {
  margin-bottom: 10px;
}

.vistana-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.vistana-btn:hover {
  background: #0b5ed7;
}

.vistana-image {
  flex: 0 0 40%;
}

.vistana-image img {
  width: 100%;
  border-radius: 12px;
}



@media (max-width: 768px) {
  .vistana-container {
    flex-direction: column;
  }

  .vistana-content,
  .vistana-image {
    flex: 100%;
  }

  .vistana-content h2 {
    font-size: 24px;
  }
}



.network-section {
  background: #f4f4f4;
  padding: 70px 20px;
  text-align: center;
}

.network-container {
  max-width: 1200px;
  margin: auto;
}

.network-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: #222;
}

.network-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.network-logos img {
  max-height: 45px;
  width: auto;
  opacity: 0.9;
  transition: 0.3s ease;
}

.network-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.network-divider {
  width: 150px;
  height: 3px;
  background: #d6dce5;
  margin: 50px auto 0;
  border-radius: 2px;
}