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

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

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

  .wwa-card-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .wwa-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 286px;
    height: 340px;
    background-color: var(--background-color);
    border-radius: 12px;
  }

  .wwa-image {
    height: 50px;
    width: 50px;
  }

  .wwa-card-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
  }

  .wwa-card-description {
    color: var(--primary-text-color);
    font-size: 1rem;
    font-weight: 400;
  }
}

@media screen and (min-width: 481px) {
  .wwa-section {
    display: flex;
    flex-direction: column;
    height: 90vh;
    justify-content: center;
    align-items: center;
    background-color: var(--card-background);
    text-align: center;
  }

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

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

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

  .wwa-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 286px;
    height: 340px;
    background-color: var(--background-color);
    border-radius: 12px;
  }

  .wwa-image {
    height: 50px;
    width: 50px;
  }

  .wwa-card-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
  }

  .wwa-card-description {
    color: var(--primary-text-color);
    font-size: 1rem;
    font-weight: 400;
  }

  .wwa-text-br {
    display: block;
  }
}