.introduction-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 7.9375rem;
    margin-right: 7.9375rem;
    background-color: var(--background-color);
    height: 90vh;
}

.intro-col {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

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

.intro-subheading {
    font-size: 20px;
    color: var(--primary-color);
}

.get-started-button {
    background-color: var(--primary-color);
    color: var(--secondary-text-color);
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    height: 56px;
    width: 250px;
}

.image-block {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.intro-image {
    width: 100%;
}