.support-page{
    padding: 5em 10em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:3em;
}
.sp-1{
    text-align: center;
}
.sp-1>h1{
    font-size: 2em;
    font-weight: 700    ;
    color: #03b9e2;
}
.sp-1>p{
    margin: 1em 25em;
    font-size: 0.9em;
}
.sp-2 {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2em;
    margin: 0em 5em;
}

.sp2-d {
    display: flex;
    flex-direction: row;
    align-items: start;
    background-color: antiquewhite;
    padding: 1em;
    flex: 1;
    min-width: 300px;
    border-radius: 0.5em;
    gap: 1em;
}
.sp-content>p{
    margin-bottom: 10px;
}

.spc-t{
    font-size: 1.2em;
    font-weight: 700;
}
.sp-content>p>a{
    font-weight: 700;
    color: #03b9e2;
}

@media (max-width: 1440px) {
    .sp-1>p{
        margin: 1em 5em;
        font-size: 0.9em;
    }
}
@media (max-width: 1024px) {
    .sp-1>p{
        margin: 1em 5em;
        font-size: 0.9em;
    }
}


@media (max-width: 768px) {
    .support-page {
        padding: 1em;
    }

    .sp-1>p {
        margin: 1em 0;
    }

    .sp-2 {
        flex-direction: column;
        margin: 0;
    }

    .sp2-d {
        flex-direction: row;
        align-items: flex-start;
    }
}
