.banner__header {
    color: var(--pp-yellow) !important;
}

.app__content,
.app__features-feature,
.app__get-started,
.app__get-started-list,
.app__desktop-help {
    display: flex;
    flex-direction: column;
}

.app__content {
    max-width: 1440px;
    padding: 0 20px;
    width: 100%;
}

.app__content {
    margin: auto;
    padding: 24px 20px 48px;
    gap: 32px;
}

.app__section-heading {
    margin: 0;
    text-align: center;
    font-size: var(--step-3);
}

.app__section-subtitle {
	font-size: var(--step-1);
}

.app__features {
    text-align: center;
}

.app__features-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 32px;
}

.app__features-feature {
    min-height: 160px;
    width: 32%;
    padding: 32px 16px;
    justify-content: center;
    border-radius: 18px;
    background-color: var(--pp-blue);
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
    gap: 8px;
    transition: transform 0.2s ease-in-out;
}

.app__features-feature:hover {
    transform: scale(1.01);
}

.app__features-feature-text {
    margin: 0;
    font-size: var(--step--1);
    color: #fff;
}

.app__features-feature-title {
    color: var(--pp-yellow);
    font-size: var(--step-1);
}

.app__get-started, .app__get-started-list {
	gap: 32px;
}

.app__get-started-list {
	margin: 0;
	list-style: none;
}

.app__step {
    gap: 8px;
}

.app__step-title {
	font-size: var(--step-0);
	margin: 0;
}

.app__desktop-help {
    width: fit-content;
    padding: 16px;
    align-items: flex-start;
    background-color: #f5f5f5;
    font-size: var(--step-0);
    color: var(--pp-blue);
    gap: 16px;
}

.app__need-help {
    display: block;
    padding: 16px;
    font-size: var(--step-2);
    font-weight: bold;
    color: var(--pp-blue);
}

@media only screen and (max-width: 992px) {
	.app__banner {
		text-align: center;
		box-shadow: inset 100vw 100vh rgba(0, 0, 0, 0.6);
	}

    .app__features-feature {
        width: 48%;
    }
}

@media only screen and (max-width: 768px) {
    .app__features-list {
		align-items: center;
        flex-direction: column;
        flex-wrap: nowrap;
        row-gap: 16px;
    }
	
	.app__features-feature {
        width: 60%;
		padding: 16px;
    }

	/* Class used inside Content */
	.app__account-boxes {
		flex-direction: column;
	}
}

@media only screen and (max-width: 576px) {
    .app__features-feature {
        width: 100%;
    }
}
