#story-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--color-bg-light-blue);
}

.story-section-heading {
    font-family: var(--font-primary);
}

.story-section-heading h1 {
    font-size: var(--font-size-h1);
}

#hero-section .hero-section-heading h2 {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-medium);
    font-family: var(--font-secondary);
}

.me-img {
    width: 350px;
    position: absolute;
    right: 50px;
}

.my-story-section {
    margin: var(--spacing-sm) 0;
    text-align: justify;
    width: 65%;
    font-family: var(--font-primary);
}

.my-story-section li {
    margin-left: var(--spacing-lg);
}

.story-section-cta {
    width: 100%;
}

.story-section-cta button {
    width: 65%;
}

@media (max-width: 1440px) {
    .me-img {
        display: none;
    }

    .my-story-section {
        width: 100%;
    }

    .story-section-cta button {
        width: 100%;
    }

    #story-section {
        height: auto;
    }
}