
/* CARD */
.itwifi-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

/* TOP ACCENT */
.itwifi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
}

/* HEADER */
.itwifi-header {
  padding: 20px;
  text-align: center;
  background: var(--primary-blue);
}

.itwifi-header h1 {
  color: #fff;
  margin: 0;
  font-weight: 700;
}

/* CONTENT */
.itwifi-content {
  padding: 20px;
}

/* IFRAME */
.itwifi-content iframe {
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .itwifi-content iframe {
    height: 500px;
  }

  .itwifi-header h1 {
    font-size: 20px;
  }
}