  .services-section {
      padding: 80px 0;
      background-color: #F3F1E6;

      .services-header {
          text-align: center;
          margin-bottom: 40px;

          h2 {
              font-family: 'Inter', sans-serif;
              font-weight: 700;
              font-size: 48px;
              line-height: 1.21;
              color: #333333;
              margin: 0 0 20px 0;

              @media (max-width: 768px) {
                  font-size: 36px;
              }
          }

          .services-underline {
              width: 113px;
              height: 5px;
              background-color: #EECE18;
              border-radius: 5px;
              margin: 0 auto;
          }
      }

      .services-grid {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 50px;
          max-width: 1000px;
          margin: 0 auto;
          padding: 0 20px;

          @media (max-width: 768px) {
              justify-content: center;
              gap: 10px;
          }
      }

      .service-card {
          background-color: #F4F3EB;
          border: 3px solid #333333;
          border-radius: 8px;
          padding: 15px 10px;
          text-align: center;
          box-shadow: 6px 8px 3px 0px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          height: 200px;
          width: 240px;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-decoration: none;
          color: inherit;

          @media (max-width: 768px) {
              width: calc(50% - 5px);
              height: calc(50vw - 25px);
              min-height: 150px;
              max-height: 180px;
          }

          &:hover {
              transform: translateY(-3px);
              box-shadow: 8px 12px 6px 0px rgba(0, 0, 0, 0.15);
              text-decoration: none;
              color: inherit;
          }

          .service-icon {
              width: 50px;
              height: 50px;
              margin: 0 auto 15px auto;
              display: flex;
              align-items: center;
              justify-content: center;

              svg {
                  width: 100%;
                  height: 100%;
                  fill: #333333;
              }
          }

          .service-title {
              font-family: 'Inter', sans-serif;
              font-weight: 400;
              font-size: 14px;
              line-height: 1.21;
              color: #333333;
              margin: 0;

              &.large {
                  font-size: 16px;
              }
          }
      }
  }
