:root {
    --primary-color: #283593;
    --secondary-color: #c8c8c8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.banner { 
    text-align: center;
    color: var(--primary-color);
    padding-bottom: 50px;
}

.banner-image {
    max-width: 100%;
    height: auto;
}

header {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px;
    margin:0 0 50px 0;
    display: flex;
    border-bottom: 2px solid var(--primary-color);
    /* border-bottom: 2px solid rgba(0, 0, 0, 0.12); */
    justify-content: space-between;
}

header .logo img {
    height: 100px;
    padding-bottom: 20px;
}

header .navbar {
    display: flex;
    align-items: center;
    padding-right: 50px;
}

header .navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header .navbar li {
    margin: 0 15px;
    font-size: 18px;
}

header .navbar a {
    text-decoration: none;
    color: var(--primary-color);
    transition: text-shadow 0.3s ease;
}

header .navbar a:hover {
    text-decoration: underline;
    text-shadow: 0.03em 0 0 currentcolor;
}


#descriptions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#descriptions section {
    color: var(--primary-color);
    padding: 50px;
}

/* #descriptions section:nth-child(odd) {
    background-color: var(--secondary-color);
} */

#descriptions h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

#descriptions p {
    font-size: 16px;
    line-height: 1.5;
}


.aboutus {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.aboutus h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.aboutus p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 800px;
    text-align: center;
}

.aboutus .team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    text-align: center;
}

.aboutus .team figure {
    margin: 10px;
    width: 200px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

footer .left img {
    height: 100px;
    padding-top: 10px;
}

footer .middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

footer .middle p {
    margin: 0;
}

footer .right {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-right: 50px;
}

footer .right p {
    margin: 0;
}

footer .right p:nth-child(2) {
  padding-bottom: 10px;
}

footer .right a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer .right a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    header .navbar {
        padding-right: 0;
    }

    .banner {
        padding-bottom: 0;
    }
    .banner .banner-image {
        max-width: 80%;
        height: auto;

    }


    #descriptions {
        flex-direction: column;
        padding: 20px;
    }

    #descriptions section {
        padding: 5px 20px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .left img {
        height: 50px;
        padding-bottom: 20px;
    }

    footer .middle {
        padding-bottom: 20px;
        text-align: left;
    }
}
