/* Modal container */
.welcome-modal {
  border-radius: 20px;
  overflow: hidden;
  border: none;
}

/* Layout */
.welcome-wrapper {
  display: flex;
  min-height: 420px;
}

/* Left image */
.welcome-image {
  flex: 1;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right content */
.welcome-content {
  flex: 1;
  padding: 60px 50px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.welcome-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.welcome-content p.small {
  font-size: 14px;
  color: #555;
}

/* Button */
.btn-continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  width: auto;
  max-width: 320px;
  margin-top: 25px;
  padding: 12px 28px;
  background-color: #1f6b3a;
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-continue:hover {
  background-color: #17552e;
  color: #fff;
}

.welcome-content p a {
	text-decoration: underline;
  color: var(--brand);
}



@media (max-width: 575.98px) {
  .welcome-wrapper {  
    flex-direction: row;
    height: 100%;
    gap: 16px;
  }

  .welcome-modal {
    height: 70vh;
    max-height: 70vh;
    /* width: 70vh; */
  }

  .welcome-image {
    display: none;
  }

  .welcome-content h2 {
    font-size: 32px;
    margin-top: 0;
  }

  .btn-continue {
    margin-top: 18px;
    align-self: flex-start;
    width: auto;
    max-width: 320px;
  }
}
