.main-title{
    text-align: center;
    margin: 80px;
}

.introduction{
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;

    display: flex;
    align-items: center;
    gap: 60px;
}

.introduction img{
    width: 50%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

.text-content{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.text-content p{
    font-size: 19px;
    line-height: 1.8;
    margin: 0;
}

.text-content button{
    background-color: #151A4D;
    padding: 12px 24px;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
    align-self: flex-start;
}

.text-content button a{
    color: #fff;
     font-weight: bold;
    text-decoration: none;
    font-family: "Jost", sans-serif;
}

/* Tablet */
@media (max-width: 900px) {

    .main-title {
        margin: 60px 20px;
    }

    .introduction {
        flex-direction: column;
        gap: 35px;
        padding: 0 25px;
        margin-bottom: 60px;
    }

    .introduction img,
    .text-content {
        width: 100%;
    }

    .introduction img {
        height: 350px;
    }

    .text-content {
        text-align: center;
        align-items: center;
    }

    .text-content button {
        align-self: center;
    }
}

/* Phone */
@media (max-width: 600px) {

    .main-title {
        margin: 40px 15px;
        font-size: 2rem;
    }

    .introduction {
        padding: 0 18px;
        margin-bottom: 40px;
    }

    .introduction img {
        height: 260px;
    }

    .text-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .text-content button {
        width: 100%;
        max-width: 220px;
        padding: 12px 20px;
    }
}