@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Righteous&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100..900&display=swap');

.learn-more {
    width: 100%;
    background: #1B8271;
    background-image: url("/assets/img/learn-more.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.learn-more-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 40px;
    align-items: center;
}

.learn-more-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.learn-more-paragraph {
    max-width: 803px;
    color: #ffffff;
    margin: 20px 0;
}

.learn-more-title {
    font-family: Roboto, "Cairo" !important;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.learn-more-description {
    font-family: Roboto, "Cairo" !important;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
}

.learn-more-col-button {
    max-width: 160px;
    display: flex;
    margin-top: 165px;
    margin-left: 0px !important;
}

.learn-more-btn {
    background-color: #ffffff;
    color: black;
    padding: 0;
    width: 155px;
    height: 51px;
    text-align: center;
    align-content: center;
    font-size: 17px;
    font-weight: bold;
    border-radius: 17px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
}

.learn-more-btn:hover {
    background-color: #d7a85d;
    color: white;
}

@media (max-width: 768px) {
    .learn-more {
        background-image: none;
    }

    .learn-more-row {
        flex-direction: column;
    }

    .learn-more-paragraph {
        max-width: 100%;
    }

    .learn-more-col-button {
        justify-content: center;
        margin-top: 0px;
    }
}
