.fvc-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background: white;
  border-radius: 12px;
  padding: 30px;
  width:100%;
  margin: 20px auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.fvc-left {
    width:40%;
}

.fvc-left h2 {
  color: #333333;
  margin-bottom: 20px;
}

.fvc-left label {
  display: block;
  margin-top: 15px;
  color: #333333;
  font-weight: 600;
}

.fvc-left input[type="number"] {
    
      width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  color: #333333;
  background-color: #f4f7fa;
  margin-top: 10px;
}
.fvc-left input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 8px;
  margin-top: 10px;
  margin-bottom: 20px;
}

#investNow {
  background: #374B47;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  width: 100%;
}

#investNow:hover {
  background: #374B47;
  opacity: 0.9;
}

.fvc-right {
  width: 50%;
  text-align: center;
  position: relative;
  margin-top: 30px;
}

.chart-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

#fvcChart {
  width: 100% !important;
  height: auto !important;
}

.chart-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}

.chart-center-text p {
  color: #333;
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.chart-center-text h2 {
  color: #333333;
  margin: 5px 0 0;
  font-size: 20px;
}

.fvc-details {
  list-style: none;
  text-align: left;
  margin-top: 25px;
  padding: 0;
}

.fvc-details .dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.dot-initial { background-color: #374B47; }
.dot-interest { background-color: #FEDD84; }

/* Responsive */
@media (max-width: 768px) {
  .fvc-container {
    flex-direction: column;
    align-items: center;
  }
  
  .chart-center-text p{
      padding: 0 30px;
  }
  .fvc-left, .fvc-right {
    width: 100%;
  }
}
