/* Container */
.container2 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Outer container and row styling */
#wish-section.wish-container {
  width: 100%;
  padding: 40px 0;
}

#wish-row.wish-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual columns */
#wish-left.wish-left,
#wish-right.wish-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Content container for both sides */
#wish-content-left.wish-content,
#wish-content-right.wish-content {
  width: 100%;
  max-width: 500px;
}

/* Headings */
#wish-title-left.wish-title,
#wish-title-right.wish-title {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.1;
  text-align: center;
}

/* Paragraphs */
#wish-text-left.wish-text,
#wish-text-right.wish-text {
  color: #ff3394;
  font-weight: 500;
  width: 100%;
  padding-bottom: 26px;
  text-align: center;
}

/* Lists */
#wish-list-left.wish-list,
#wish-list-right.wish-list {
  list-style: none;
  padding: 0;
  width: 100%;
}

#wish-list-left.wish-list li,
#wish-list-right.wish-list li {
  font-size: 18px;
  color: #666666;
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

#wish-list-left.wish-list li img,
#wish-list-right.wish-list li img {
  padding-right: 15px;
}

/* Responsive */
@media (max-width: 990px) {
  #wish-row.wish-row {
    flex-direction: column;
    gap: 0;
  }
  #wish-left.wish-left, #wish-right.wish-right {
    margin-bottom: 30px;
    align-items: center;
  }
  #wish-content-left.wish-content,
  #wish-content-right.wish-content {
    max-width: 90vw;
  }
}


/* Hero */
.hero2 {
  padding: 120px 0 80px;
  /* background: linear-gradient(135deg, #FFE4E6 0%, #E3F2FD 50%, #FFF8E1 100%); */
  text-align: center;
}

.hero-title {
  font-size: clamp(24px, 5vw, 60px);
  font-weight: 600;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FF6B9D 0%, #9B59B6 50%, #3498DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  color: rgba(98, 108, 113, 1);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.btn2--primary {
  background: linear-gradient(135deg, #FF6B9D 0%, #9B59B6 50%, #3498DB 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn2--lg {
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 10px;
}