.parking-addons {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    font-family: "Nasalization" !important;

  }
  .gradient{
    background: linear-gradient(to bottom, #F5FFDD, #fff);

  }
  .left-section {
    flex: 1;
    min-width: 280px;
    background-image: url(../../newImages/sec2_2.png);
    background-position: top left;
    background-size: 200px;
    background-repeat: no-repeat;
  }
  .left-section img{
width: 165px;

  }
  
  .subtitle {
    color: #5a9e3b;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .title {
    font-size: 2rem;
    color: #1D5472;
    font-family: "Nasalization" !important;

    margin: 0.5rem 0;
    line-height: 35px;
  }
  
  .description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .cta-button {
    background: linear-gradient(to top, #B5DC06, #55640F);
    color: white;
    padding: 0.8rem;
    border: none;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  
    width: 50%;
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
    font-family: "Nasalization" !important;
  }
  
  .cta-button:hover {
    background-color: #7ab02e;
    background: linear-gradient(to top, #3a9bc5, #2B6985);
    box-shadow: 0 8px 20px #2B6985;
  }
  
  .right-section {
    flex: 2;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .addon {
    text-align: center;
    max-width: 200px;
    transition: all 0.4s ease-in-out;

  }
  .addon:hover{
    background-color: #1D5472;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 700px;
    border-top-left-radius: 700px;
    border-bottom-left-radius: 500px;
    padding-bottom: 10px;
    color: white;
  }
  
  .addon img {
    width: 100%;
    border-radius: 100px;
    object-fit: cover;
    margin-bottom: 0.5rem;
  }
  
  .addon h4 {
    color: #B5DC06;
    margin: 0.5rem 0 0;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: "Nasalization" !important;

  }
  
  .addon p {
    font-size: 0.9rem;
    font-family: "Nasalization" !important;

  }
  
  
  /* Responsive design for 768px and below */
  @media screen and (max-width: 768px) {
    .parking-addons {
      flex-direction: column;
      align-items: center;
    }
  
    .left-section {
      text-align: center;
    }
  
    .title {
      font-size: 18px;
    }
  
    .description {
      font-size: 0.95rem;
    }
  
    .cta-button {
      font-size: 0.95rem;
      padding: 0.6rem 1.2rem;
      width: 100%;

    }
  
    .right-section {
      flex-direction: column;
      align-items: center;
    }
  
    .addon {
      margin-bottom: 1rem;
    }
  }
  