  .welcome-section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .welcome-section img {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .welcome-text {
    flex: 1 1 300px;
    min-width: 250px;
  }

  @media (max-width: 768px) {
    .welcome-section {
      flex-direction: column;
      align-items: center;
    }

    .welcome-section img {
      margin-bottom: 1rem;
    }

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icons img {
  transition: transform 0.2s ease;
  cursor: pointer;
}

.social-icons img:hover {
  transform: scale(1.1);
}
  }