/* tablet.css */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .features-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding: 20px;
    }
  
    .features-text {
      text-align: center;
      margin-bottom: 30px;
    }
  
    .features-text h1 {
      font-size: 2rem;
      margin-bottom: 15px;
    }
  
    .features-text p {
      margin-left: 10rem;
      font-size: 1.1rem;
      line-height: 1.8;
    }
  
    .features-cards {
        display: flex; /* Change from grid to flex */
        flex-wrap: wrap; /* Allow cards to wrap to the next row */
        justify-content: center; /* Center cards horizontally */
        gap: 20px; /* Maintain spacing between cards */
    }
    
  
    .feature-card {
      padding: 20px;
      text-align: center;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    .pink-card {
    
      background-color: #9E016C;
  }
  
  .green-card {
      background-color: #2A2927;
  }
  
  .blue-card {
      background-color: #2A2927;
  }
  
  .purple-card {
      background-color: #9E016C;
  }
  
  /* Adjust bottom row cards */
.features-cards .feature-card:nth-child(2), 
.features-cards .feature-card:nth-child(4) {
    margin-top: 0px; /* Move the second row upwards */
}
    .feature-card img {
      max-width: 100%;
      height: auto;
      margin-bottom: 15px;
    }
  
    .feature-card h3 {
      font-size: 1.2rem;
      margin-top: 10px;
    }
  }
  