.features-section {
    padding: 40px 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .feature-card {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }
  
  .feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    transition: filter 0.3s ease;
  }
  
  .feature-card:hover .feature-card-bg {
    filter: brightness(0.7);
  }
  
  .feature-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .feature-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .feature-description {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 400px;
  }
  
  .feature-button {
    background-color: white;
    color: #002c49;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .feature-button:hover {
    background-color: #f86d08;
    color: white;
  }
  
  @media (max-width: 768px) {
    .feature-card {
      height: 240px;
    }
  
    .feature-title {
      font-size: 24px;
    }
  
    .feature-description {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .feature-card {
      height: 220px;
    }
  
    .feature-title {
      font-size: 22px;
    }
  
    .feature-description {
      font-size: 13px;
      margin-bottom: 15px;
    }
  
    .feature-button {
      padding: 8px 20px;
      font-size: 14px;
    }
  }
  