.welcome-section {
  min-height: 50vh;
  background: var(--primary-2);
  padding: 6rem;
  width: calc(100% - 4rem);
  margin: 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-container {
  max-width: 87.5rem;
  width: 100%;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  background: var(--neutral-light);
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-left,
.welcome-right {
  flex: 1;
}

.welcome-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.welcome-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-black);
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
}

.welcome-left p {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 5vw, 1.8rem);
  color: var(--neutral-dark);
  line-height: 1.8;
  font-weight: var(--fw-regular);
  opacity: 0.85;
}

.welcome-left p strong {
  font-weight: var(--fw-bold);
  color: var(--primary-1);
}

.welcome-right img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-right img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .welcome-section {
    padding: 2rem;
    min-height: 50vh;
  }

  .welcome-container {
    gap: 3rem;
    padding: 4rem;
    width: 100%;
  }

  .welcome-left h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .welcome-left p {
    font-size: clamp(1rem, 5vw, 1.15rem);
  }

  .welcome-right img {
    max-height: 300px;
  }
}

@media (max-width: 900px) {
  .welcome-section {
    padding: 3rem;
    min-height: 48vh;
  }

  .welcome-container {
    gap: 2.5rem;
    padding: 3.25rem;
  }

  .welcome-left h2 {
    font-size: clamp(1.65rem, 5vw, 2.5rem);
  }

  .welcome-left p {
    font-size: clamp(1rem, 5vw, 1.2rem);
  }

  .welcome-right img {
    max-height: 290px;
  }
}

@media (max-width: 768px) {
  .welcome-section {
    padding: 4rem;
    min-height: auto;
  }

  .welcome-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
  }

  .welcome-left h2 {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .welcome-left h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .welcome-left p {
    text-align: center;
  }

  .welcome-right img {
    max-height: 280px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .welcome-section {
    padding: 2.5rem 1.5rem;
    min-height: auto;
    width: calc(100% - 2rem);
    margin: 1rem;
  }

  .welcome-container {
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  }

  .welcome-container:hover {
    transform: translateY(-3px);
  }

  .welcome-left h2 {
    font-size: 1.8rem;
    margin-bottom: 0.875rem;
  }

  .welcome-left h2::after {
    width: 2.5rem;
    height: 3px;
  }

  .welcome-left p {
    font-size: 1.4rem;
    line-height: 1.65;
  }

  .welcome-right img {
    max-height: 220px;
    border-radius: 0.5rem;
  }
}

@media (max-width: 400px) {
  .welcome-section {
    padding: 1.75rem 0.875rem;
    width: calc(100% - 1.5rem);
    margin: 0.75rem;
  }

  .welcome-container {
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .welcome-left h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .welcome-left h2::after {
    width: 2rem;
    height: 2px;
  }

  .welcome-left p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .welcome-right img {
    max-height: 190px;
    border-radius: 0.5rem;
  }
}

@media (max-width: 375px) {
  .welcome-section {
    padding: 1.5rem 0.75rem;
    width: calc(100% - 1rem);
    margin: 0.5rem;
  }

  .welcome-container {
    gap: 1rem;
    padding: 1rem;
  }

  .welcome-left h2 {
    font-size: 1.85rem;
    margin-bottom: 0.625rem;
  }

  .welcome-left p {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .welcome-right img {
    max-height: 170px;
  }
}
