main .content{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 1rem;
    justify-content: center;
}


main .content section{
    flex: 1 0 calc(50% - 3rem);
    border-radius: 8px;
    background: linear-gradient(135deg, #444aa1 30%, #010e5a 100%); 
    display: flex;
}

main .content section img{
    max-width: 45%;
    height: auto;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}

main .content section div.text-area{
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
}

main .content section h1{
    color: #fff;
    font-size: 2rem;
    text-align: center;
    margin: 2rem auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

main .content section div.text-area > a{
    display: block;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin: auto;
    margin-bottom: 1rem;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    background-color: #4e9a06;
    color: #fff;
    text-decoration: none;
    width: fit-content;
    transition: color 0.3s ease;
}

main .content section p{
    color: #fff;
    font-size: 1.3rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.6;
    margin: 1rem auto;
    max-width: 800px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    font-weight: 700;
}

main .content section ul{
    list-style: none;
    padding: 0;
    margin: 1rem auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: fit-content;
    border-radius: 8px;
    padding: 1rem;
}

main .content section ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
}

main .content section div.text-area > span{
    display: block;
    font-size: 1rem;
    text-align: justify;
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
    margin: 1rem auto;
    max-width: 800px;
    list-style: 1.5;
}

main .content section div.text-area > img{
    width:250px;
    margin: 2rem;
    border-radius: 10px;
}


@media (max-width: 950px)  {
    main .content section {
        flex: 1 0 100%;
        flex-direction: column;
    }

    main .content section img{
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 8px 8px 0 0;
    }
}