* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fff;
}

.container {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

/* Left Section */
.left-section {
  flex: 1;
  min-width: 300px;
  background: #fff;
  overflow: hidden;
  border-bottom-right-radius: 100px;
}

.left-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Section */
.right-section {
  flex: 1.2;
  position: relative;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: #ddefb7;
  z-index: 0;
}
.circle-top {
  top: 30px;
  left: 40%; /* moved slightly left from 50% */
  width: 200px;
  height: 200px;
  transform: translateX(-50%);
}

.circle-bottom {
  bottom: 0;
  right: 0;
  width: 320px;
  height: 320px;
  transform: translate(50%, 50%);
}

.content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  text-align: center;
margin-top: -60px;
}


.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.map-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
}

.sub-heading {
  font-size: 16px;
  margin-bottom: 16px;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.date-box {
  padding: 12px 8px;
  border: 2px solid #a2c530;
  background-color: #ddd;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
}

.date-box span {
  display: block;
  font-size: 16px;
  margin-top: 6px;
}

.cost {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 0 10px;
  flex-wrap: wrap;
}

.cost strong {
  font-size: 18px;
}

.continue-btn {
  background-color: #a2c530;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  padding: 14px 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.continue-btn a {
  color: white;
  text-decoration: none;
}

.continue-btn:hover {
  background-color: #8bb52a;
}

/* Responsive */
@media (max-width: 1024px) {
  .date-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    width: 100%;
    border-radius: 0;
  }

  .content-wrapper {
    margin-top: 20px;
    padding: 0 20px;
  }

  .date-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cost {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  .continue-btn {
    width: 100%;
  }
}
