/* First Section */
section#header,
section#header article,
.action-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section#header {
    margin-top: 0;
}

section#header article {
    gap: 18px;
}


section#header p {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary)
}

.action-buttons {
    margin: 42px 0 0 0;
    gap: 2px;
}

/* Second Section */
.question {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 34px;
    margin: 48px 0 148px 0;
}

.feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px;
    font-size: 19px;
    color: var(--blue);
    gap: 14px;
    border-radius: 24px;
    border: 1px solid rgba(19, 102, 252, 0.5);
    background: linear-gradient(312deg, #F0F5FF 0%, #FAFCFF 100%);
    color: var(--blue-faint);
    font-weight: 600;
    text-align: left;
    line-height: 145%;
}

.feature object {
    height: 52px;
    width: 52px;
}

.feature p b {
    font-weight: 700;
    color: var(--blue);
}

/* Third Section */
.how-it-works {
    border-radius: 24px;
    margin: 42px auto;
    padding: 0 42px;
    width: max-content;
    border: 1px solid rgba(19, 102, 252, 0.50);
    background: linear-gradient(312deg, #F0F5FF 0%, #FAFCFF 100%);
}

section#how-it-works button {
    display: block;
    margin: 24px auto;
}

.how-it-works>div {
    color: #4184FD;
    margin: 32px 0;
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    opacity: 0.9;
}

/* Fourth section */
section#earnings {
    padding: 0 0 128px 0;
}

.boxes-container {
    display: flex;
    gap: 54px;
    width: 100%;
}

.box {
    flex: 1;
    display: inline-block;
    padding: 2px;
    border-radius: 36px 36px 0 0;
    /* height: 400px; */
    background: linear-gradient(0deg, rgba(19, 139, 228, 0), rgba(19, 139, 228, 0.5));
}

.box-content {
    padding: 48px 48px 64px 48px;
    font-size: 18px;
    color: var(--primary);
    font-weight: 500;
    line-height: 155%;
    height: 100%;
    border-radius: 34px 34px 0 0;
    background: #ffffff;
}

section#earnings h2 {
    text-align: center;
    margin: 92px 0 42px 0;
}

section#earnings h3 {
    font-size: 28px;
    color: var(--blue);
    margin: 12px 0 16px 0;
}

section#earnings .transparent {
    line-height: 155%;
    margin: 14px 0 0 0;
}