/* Start custom CSS *//* Introduction Section Styling */
.vob-introduction {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vob-introduction:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.intro-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vob-introduction h2 {
  font-size: 2.5em;
  color: #00796b;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.vob-introduction p {
  font-size: 1.1em;
  color: #004d40;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vob-introduction {
    padding: 30px 15px;
  }

  .vob-introduction h2 {
    font-size: 2em;
  }

  .vob-introduction p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .vob-introduction {
    padding: 20px 10px;
  }

  .vob-introduction h2 {
    font-size: 1.8em;
  }

  .vob-introduction p {
    font-size: 0.95em;
  }
}/* End custom CSS */