* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Roboto;
    font-size: 125%;
    background-color: #F5F5F5;
    color: #3D3A3A
}

.main-section{
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border-radius: 10px;
    margin: 0 auto;
    padding: 5%;
    gap: 5%;
    width: 100%;
    max-width: 100%;
    max-height: 90%;
    position: relative;
}

.text-section {
    display: flex;
    flex-direction: column;
}

.title-section {
    color: #EA7A00;
}

.subtitle-section{
    margin: 2% 0%;
}
.paragraph-section{
    margin: 2% 0%;
}

.column {
    display: flex;
    flex-direction: column;
    width: 70%;
}

.solutions-link{
    display: flex;
    flex-direction: column;
    gap: 2%;
}

.single-solution{
    text-decoration: none;
    color: inherit;
    cursor: default;
    margin: 2% 0%;
}

.single-solution:hover,
.single-solution:active,
.single-solution:focus {
    text-decoration: underline;
    color: #EA7A00;
    cursor: pointer;
}
.button{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

img{
    margin: 5%;
    width: 80%;
    height: 80%;
}

.ul-section{
    margin: 2% 2%;
}

@media screen and (max-width: 900px) {
    .main-section {
        flex-direction: column;
        padding: 2%;
    }
    .text-section {
        width: 100%;
    }
    img{
        width: 100%;
        height: 100%;
    }
    .column {
        width: 100%;
    }
    .button{
        flex-direction: column;
    }
    
}