.container .contact-us {
    background-color: #f5f5f5;
    display: flex;
    gap: 10px;
    padding: 40px 5%;
    flex-direction: column;
}

.container .contact-us h3 {
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
    font-size: 30px;
}

.container .contact-us > span {
    font-family: "YekanBakhFaNum-Regular", sans-serif;
    font-size: 22px;
}

.container .contact-us .section {
    display: flex;
    justify-content: space-evenly;
}

.container .contact-us .section > img {
    width: 40%;
    max-width: 550px;
    object-fit: contain;
}

.container .contact-us .section .ways {
    width: 40%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: stretch;
}

.container .contact-us .section .ways .way {
    border: 1px solid #092a59;
    background-color: white;
    display: flex;
    justify-content: start;
    gap: 4%;
    border-radius: 10px;
    padding: 15px;
    align-items: center;
}

.container .contact-us .section .ways .way .img {
    background-color: #092a59;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.container .contact-us .section .ways .way .img img {
    width: 100%;
    height: 100%;
}

.container .contact-us .section .ways .way .title {
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
    font-size: 16px;
    color: black;
}

.container .contact-us .section .ways .way .title > span {
    font-size: 18px;
    color: #092a59;
}

@media all and (max-width: 850px) {
    .container .contact-us .section {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: center;
    }

    .container .contact-us .section .ways {
        width: 100%;
    }

    .container .contact-us .section > img {
        width: 50%;
    }
}

@media all and (max-width: 400px) {
    .container .contact-us h3 {
        font-size: 26px;
    }

    .container .contact-us > span {
        font-size: 18px;
    }

    .container .contact-us .section > img {
        width: 75%;
    }

    .container .contact-us .section .ways .way p > span,
    .container .contact-us .section .ways .way p #email {
        font-size: 16px;
    }

    .container .contact-us .section .ways .way p > a {
        font-size: 14px;
    }
}