/* Welcome Section Styles */
.welcome-section {
  background-color: #f0f2f5;
  padding: 60px 0;
}

.welcome-container {
  margin: 30px auto;
}

.welcome-header {
  text-align: center;
  margin-bottom: 30px;
}

.welcome-title {
  color: var(--bs-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.welcome-subtitle {
  color: var(--bs-primary);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.welcome-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

.welcome-image {
  flex: 0 0 100%;
  max-width: 100%;
}

.welcome-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.welcome-text {
  flex: 0 0 100%;
  max-width: 100%;
}

.welcome-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

/* Responsive styles */
@media (min-width: 992px) {
  .welcome-image {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .welcome-text {
    flex: 0 0 55%;
    max-width: 55%;
  }
}

@media (max-width: 768px) {
  .welcome-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .welcome-header {
    margin-bottom: 0;
  }

  .welcome-title {
    font-size: 2rem;
  }

  .welcome-subtitle {
    font-size: 1rem;
  }

  .welcome-section {
    padding: 40px 0;
  }

  .welcome-text {
    display: none;
  }
}
