#eu{
    margin-left: 10%;
    margin-right: 10%;
    padding: 5%;
}

#eu p{
    margin-top: 5%;
    margin-bottom: 5%;
    letter-spacing: 0.5vw;
    font-size: clamp(16px, 2vw, 28px);
    color: var(--primary-text-color);
}

.eu{
    padding: 5%;
    margin-bottom: 0%;
    background-color: #00bfef10;
    border: medium solid #1b5361;
    border-width: 1px;
    border-radius: 5px;
    display: flex;
    gap: 30px;
}

.eu-img{
    display: flex;
    width: 50%;
    height: auto;
    justify-content: center;
    align-items: center;         
}

.eu img{
    width: 100%;
    height: auto;
    vertical-align: bottom;    
}

.eu-text{
    width: 50%;
    height: auto;
    font-size: clamp(12px, 1vw, 20px);
    color: var(--text-color);
    text-decoration: none;
    position: relative;    
}

@media(max-width: 800px){
    #eu{
        padding-top: 15%; 
        margin-left: 0;
        margin-right: 0;
    }
}

@media(max-width: 1200px){
    .eu{
        flex-wrap: wrap;
    }
   .eu-img{
        width: 100%;       
    }
    .eu-text{
        width: 100%;
    }
}