@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Ubuntu:wght@300;400;500;700&display=swap');

html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: 0;
    font-family: 'Poppins', sans-serif;
}

a{
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}

a:hover{
    color: #D6D3C4 !important;
}

h5{
    font-size: 20px;
}

li{
    list-style: none;
}

nav{
    background-color: #fff;
    position: sticky;
    top: 0;
    padding: 0 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    box-shadow: 0 5px 80px rgba(0, 0, 0, 0.1);
}

nav .logo,
footer .logo{
    display: flex;
    align-items: center;
}

nav .logo a,
footer .logo a{
    margin-left: 8px;
    font-weight: bold;
    font-size: 20px;
}

nav .logo img,
footer .logo img{
    width: 40px;
    height: 40px;
}

nav ul,
footer .top ul{
    display: flex;
    gap: 40px;
}


.main{
    background-color: #D6D3C4;
    padding: 90px 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.main .left{
    display: flex;
    flex-direction: column;
    align-items: start;
}

.main .left h3{
    margin-top: 10px;
    font-weight: bold;
    font-size: 46px;
}


.main .left p{
    color: #3e3e3e;
    font-size: 22px;
    margin-top: 20px;
}

.economic .right h3,
.portfolio .header h3{
    font-size: 40px;
    margin-top: 20px;
}

.economic{
    padding: 110px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.economic .left{
    background-color: #D6D3C4;
    border-radius: 10px 10px 0 0;
}

.economic .left img{
    width: 440px;
}

.economic .right p{
    font-size: 16px;
    margin-top: 30px;
}

footer{
    background-color: #D6D3C4;
    padding: 85px;
    display: flex;
    flex-direction: column;
}

footer .top,
footer .bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .separator{
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 30px 0 20px;
}

footer .bottom p{
    font-size: 12px;
}

footer .bottom .links a{
    font-size: 12px;
    margin-left: 14px;
}

.conclusions {
    padding: 110px;
    margin-top: 2rem;
    border-radius: 12px;
}

.conclusions h3{
    font-size: 40px;
}


.score-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.score-table th, .score-table td {
    border: 1px solid #ccc;
    padding: 0.75rem;
    text-align: center;
    background-color: #fff;
}

.score-table th {
    background-color: #D6D3C4;
    font-weight: bold;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    margin-top: 1.5rem;
    height: 200px;
    gap: 1rem;
}

.bar {
    background-color: #3e3e3e;
    width: 100px;
    height: calc(var(--score) * 40px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    transition: 0.3s ease;
}

.bar span {
    position: absolute;
    bottom: -1.5rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.highlights {
    background-color: #D6D3C4;
    border-left: 4px solid #000;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
}

.highlights h4 {
    margin-top: 0;
    color: #000;
    padding: 10px;
}

.highlights ul {
    padding-left: 1.2rem;
    list-style-type: disc;
}

.highlights li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media screen and (max-width: 1200px) {
    
    .main .left h5{
        font-size: 18px;
    }

    .main .left h3{
        font-size: 36px;
    }

    .main .left p{
        font-size: 18px;
    }

    .main .right img{
        width: 380px;
    }

    .economic .left img{
        width: 370px;
    }

    .economic .right h3,
    .portfolio .header h3{
        font-size: 32px;
    }

    .economic .right p{
        font-size: 15px;
    }

    footer .top ul{
        gap: 20px;
    }

}

@media screen and (max-width: 992px) {
    
    nav button{
        display: none;
    }

    nav ul{
        gap: 20px;
    }

    nav ul li a{
        font-size: 15px;
    }

    .main{
        flex-direction: column;
    }

    .economic{
        flex-direction: column;
        justify-content: center;
    }

    footer .top ul{
        display: none;
    }

}

@media screen and (max-width: 768px) {
    
    nav{
        justify-content: space-between;
        padding: 0 42px;
    }

    nav ul{
        display: none;
    }

    nav.open .logo{
        display: none;
    }

    nav.open ul{
        display: flex;
    }

    nav button#menuButton{
        display: flex;
    }

    .main{
        padding: 42px;
    }

    .economic{
        padding: 85px 42px;
    }

    footer{
        padding: 85px 42px;
    }

    footer .bottom{
        flex-direction: column-reverse;
        gap: 14px;
    }

}

@media screen and (max-width: 576px) {
    
    nav ul li a{
        font-size: 13px;
    }

    nav .logo a{
        font-size: 18px;
    }

    .main .left h3{
        font-size: 32px;
    }

    .main .left p{
        font-size: 16px;
    }

    .main .left button{
        width: 100%;
    }

}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
