.dream-space-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.dream-space-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.dream-space-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 2;
}

.dream-space-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.dream-space-title {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.dream-space-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 32px;
}

.dream-space-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #a8e063;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.dream-space-btn:hover {
  background: #9ad652;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 224, 99, 0.3);
  text-decoration: none;
  color: #1a1a1a;
}

.dream-space-btn .uk-icon {
  transition: transform 0.3s ease;
}

.dream-space-btn:hover .uk-icon {
  transform: translateX(4px);
}

@media (max-width: 960px) {
  .dream-space-section {
    min-height: 400px;
  }
  .dream-space-title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .dream-space-section {
    min-height: 350px;
  }
  .dream-space-title {
    font-size: 28px;
  }
  .dream-space-subtitle {
    font-size: 14px;
  }
}