.welcome-section {
  text-align: center;
  padding: 3rem 1rem;
}

.welcome-section:first-child {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.welcome-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
}

.start-btn {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 3rem;
  background: #fb6f92;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 111, 146, 0.3);
}

.start-btn:hover {
  background: #ff5a82;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 111, 146, 0.4);
}

.start-btn:active {
  transform: translateY(0);
}

/* Responsive: Adjust sizes on smaller screens */
@media (max-width: 768px) {
  .welcome-section:first-child {
    font-size: 2.5rem;
  }

  .start-btn {
    font-size: 1.3rem;
    padding: 0.875rem 2.5rem;
  }
}

@media (max-width: 480px) {
  .welcome-section h1 {
    font-size: 2rem;
  }

  .start-btn {
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
  }
}