body {
  font-family: Arial, sans-serif;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Hero Section */
.instran-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: #fff;
  flex-wrap: wrap;
}

.instran-content {
  flex: 1 1 50%;
  padding: 10px 20px;
}

.instran-title {
  font-size: 1.8rem;
  color: #004080;
  margin-bottom: 15px;
}

.instran-image {
  flex: 1 1 40%;
  text-align: right;
}

.instran-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Sections */
.instran-section {
  padding: 20px 80px;
  background: #fff;
  margin: 20px 0;
  border-radius: 6px;
}

.instran-section:nth-of-type(even) {
  background: #eef4fb;
}

.instran-section h2 {
  font-size: 1.4rem;
  color: #004080;
  margin-bottom: 15px;
  border-bottom: 2px solid #004080;
  display: inline-block;
}

.instran-section h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #003366;
}


.instran-note {
  font-size: 0.9rem;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .instran-hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .instran-image {
    text-align: center;
    margin-bottom: 15px;
  }

  .instran-content {
    padding: 0;
  }
}
