<style>
  body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
  }
  .services-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 20px;
    flex-wrap: wrap;
    background-color: #fff;
  }
  .service-card {
    background-color: #1e2028;
    color: #ffffff;
    padding: 75px 20px 20px 20px !important;
    flex: 1 1 220px;
    max-width: 360px;
    min-height: 330px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid #2a2d38;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .service-card:not(:hover) .service-desc {
    height: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
  }
  .service-card:hover .service-desc {
    height: auto;
    opacity: 1;
    padding-top: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
  }
  .service-icon {
    font-size: 28px;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 400;
  }
  .service-title {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 700;
    color: #fdd835 !important;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: -0.01em;
  }
  .service-desc {
    font-family: Montserrat;
    font-size: 14px;
    color: #d1d5db !important;
    line-height: 1.6;
    font-weight: 400;
    overflow: hidden;
    transition: all 0.3s ease;
  }
</style>