.price-area {
         display: flex;
         flex-wrap: wrap;
         gap: 30px;
         background: #fff;
         box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
         padding: 20px;
         border-radius: 12px;
         max-width: 1140px;
         margin: 0px auto 40px;
      }

      .form-section,
      .result-section {
         flex: 1;
         min-width: 320px;
      }

      .form-section label {
         font-weight: 600;
         margin-top: 1px;
      }

      .form-section input {
         margin-top: 6px;
         margin-bottom: 18px;
         border-radius: 6px;
         height: 40px;
      }

      .result-section {
         background: #f8f9fa;
         padding:25px 20px;
         border-radius: 12px;
         text-align: center;
         display: flex;
         flex-direction: column;
         justify-content: center;
      }

      .result-section h2 {
         font-size: 30px;
         margin: 8px 0;
         font-weight: 700;
         color: #212529;
      }

      .result-section p {
         margin-bottom: 0.3rem;
      }

      .apply-button {
         background: #c1272d;
         color: white;
         border: none;
         padding: 15px;
         font-size: 17px;
         margin-top: 30px;
         width: 100%;
         cursor: pointer;
         border-radius: 8px;
         transition: background 0.3s;
      }

      .apply-button:hover {
         background: #a21f26;
      }

      .product {
         position: relative;
      }

      .product .stretched-link {
         position: absolute;
         inset: 0;
         z-index: 1;
      }

      .product .call-info,
      .product .call-info a {
         position: relative;
         z-index: 2;
      }

      .appreciation-chart-card {
         background: linear-gradient(135deg, #f3f7ff 0%, #ffffff 100%);
         border: 1px solid rgba(109, 121, 255, 0.15);
         border-radius: 16px;
         padding: 24px;
         box-shadow: 0 18px 45px rgba(57, 73, 171, 0.08);
      }

      .appreciation-chart-card canvas {
         width: 100% !important;
      }

      .breakdown {
         display: flex;
         height: 20px;
         margin: 12px 0;
         border-radius: 5px;
         overflow: hidden;
         background: #e9ecef;
      }

      .interest {
         background: #2e2e2e;
         transition: width 0.4s ease;
      }

      .principal {
         background: #c0c0c0;
         transition: width 0.4s ease;
      }

      .adcb-footer {
         font-size: 13px;
         color: #6c757d;
         margin-top: 18px;
      }

      .amenities-slider-list-box {
         display: none;
      }
	 @media (max-width: 575px) {
    .form-section, .result-section {     
        min-width: 100%;
    }
	
.result-section h2 {
    font-size: 20px;
    margin: 4px 0;
}	
	
}
 