
#expectation {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    color: black;
    text-align: center;
}

#expectWindows {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    color: black;
    text-align: center;
}

#expectation h1 {
    font-size: 40px;
    color: #5f90c9;
}

.picPart h3 {
    font-size: 30px;
    width: 90%;
    color: #5f90c9;
}

.picPart p
{
    width: 80%;
}

.picPart {
    display: flex;
    flex-direction: row;
    width: 80%;
}


.section-content {
    height: 600px;
    width: 50%;
    margin: 5%;
}

#expectation img {
    height: 700px;
    padding: 5% auto;
}

.strategy-section{
    background-image: url(img/short-logo.webp);
    background-color: white;
    background-size: cover;      
    background-position: center;
    background-repeat: no-repeat;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    text-align: center;
}

.strategy-section h1 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.flow-step h4 {
    color: #5f90c9;
}
.border-text {
    border: 2px solid #000;
    color: black;
    width: 50%;
    padding: 15px 25px;
    border-radius: 5px;
    background-color: white;
}

.no-border {
    color: black;
    padding: 10px 20px;
}

.arrow {
    font-size: 3rem;
    margin: 10px 0;
    color: black;
}

@media (max-width: 480px) {
    
    #expectation h1 {
        font-size: 20px;
    }

    #expectation h3 {
        font-size: 16px;
    }

    #expectation h4 {
        font-size: 12px;
    }

    #expectation img {
        height: 250px;
    }

    .picPart {
        flex-direction: column;
        align-items: center;
    }

    .section-content {
        width: 70%;
    }

    #strategy-section {
        border: solid 2px #5f90c9;
    }

}