.workflow-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--secondary-background-color);
    text-align: center;
}

.workflow-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 10px;
}

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

.workflow-card-section {
    display: flex;
    flex-direction: row;
    background-color: var(--card-background);
    justify-content: center;
    gap: 20px;
}

.workflow-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;
}

.workflow-card-icon {
    height: 96px;
    width: 96px;
    border-radius: 96px;
    background-color: var(--card-background);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
}

.card-idea-image {
    height: 50px;
    width: 50px;
}