@media screen and (max-width: 480px) {
  .services-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    background-color: var(--secondary-background-color);
    text-align: center;
    padding: 60px 0 60px 0;
  }

  .services-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  .services-subheading {
    font-size: 1.125rem;
    font-weight: 400;
    text-align: center;
    color: var(--primary-text-color);
    padding: 30px 20px 3.125rem 20px;
  }

  .service-card-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
  }

  .services-card {
    width: 350px;
    border-radius: 12px;
    background-color: var(--background-color);
    padding: 10px;
    padding-bottom: 40px;
  }

  .service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    padding-top: 20px;
    padding-bottom: 15px;
  }

  .serivce-card-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--hint-text-color);
  }
}

@media screen and (min-width: 481px) {
  .services-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 3.5625rem;
    padding-right: 3.5625rem;
    background-color: var(--secondary-background-color);
    height: 100vh;
    text-align: center;
  }

  .services-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
  }

  .services-subheading {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: var(--primary-text-color);
    padding: 2rem 0 3.125rem 10px;
  }

  .services-subheading-br {
    display: block;
  }

  .service-card-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }

  .services-card {
    width: 350px;
    border-radius: 12px;
    background-color: var(--background-color);
    padding: 10px;
    padding-bottom: 40px;
  }

  .service-card-image {
    display: flex;
    flex: 1;
    width: 350px;
    height: 240px;
  }

  .service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    padding-top: 20px;
    padding-bottom: 15px;
  }

  .serivce-card-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--hint-text-color);
  }
}