/* Services List Section */
.services-list {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly;
      background-color: white;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 20px;
      height: 15rem;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
  .service-icon {
    font-size: 2rem;
  
    margin-bottom: 15px;
  }
  
  .service-item h2 {
    font-size: 20px;
    color: #ff6600;
  }
  
  .service-item p {
    font-size: 14px;
    color: #555555ad;
    width: 60%;
  }
  
  /* Call to Action Section */
  .cta-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff8e6;
    border-top: 1px solid #ff6600;
    /* margin-bottom: 10px; */
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
  
  .cta-section p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #ff6600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e55c00;
  }
  .cta-button:visited{
      color: #fff;
  }
  