.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);
    padding-bottom: 10px;
}

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

.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: 20px;
    font-weight: 600;
    color: var(--primary-color);
    padding-top: 20px;
    padding-bottom: 15px;
}

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