@charset "utf-8";
    @import url(https://fonts.googleapis.com/css?family=Asap:400,400i,500,500i,700,700i);
    @import url(https://fonts.googleapis.com/css?family=Ubuntu:300,300i,400,400i,500,500i,700,700i);

    body {
        margin: 0;
        font-family: 'Ubuntu', sans-serif;
        background-color: #F7F1EA;
    }

    /* Header and Footer */
    #header, #footer {
        width: 100%;
    }

    /* Image Section */
    .image-container {
        position: relative;
        width: 100%;
        height: 60vh;
        overflow: hidden;
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .image-title {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        text-align: center;
        font-size: 30px;
        font-weight: 600;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container-about {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5% 10%;
        background-image: url('/assets/img/abt-after.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        border-radius: 10px;
    }
    .left-content {
        width: 50%;
    }
    .left-content h2 {
        font-size: 32px;
        margin-bottom: 10px;
        color: black;
    }
    .left-content p {
        font-size: 16px;
        margin-bottom: 20px;
        color: gray;
        text-align: justify;
    }
    .team {
        display: flex;
        gap: 20px;
    }
    .member {
        text-align: center;
    }
    .member h4{
        padding: 0%;
        margin: 0%;
        color: #8F654F;
    }
    .member p {
        margin: 0%;
        color: gray;
        font-weight: 600;
        text-align: left;
        margin-top: 5px;
    }
    .divider {
        width: 2px; /* Vertical line */
        height: 50px; /* Adjust height */
        background-color: lightgray;
    }
    
    .right-content img {
        width: 475px;
        height: auto;
    }


    @media screen and (max-width: 1024px) {
        .container-about{
            padding: 5%;
            gap: 5%;
            align-items: flex-start;
        }

        .left-content p{
            font-size: 12px;
        }
    }

    @media screen and (max-width: 768px) {
        .container-about{
            flex-direction: column;
            gap: 25px;
        }

        .left-content{
            width: 100%;
        }

        .right-content{
            width: 100%;
        }

        .right-content img{
            width: 100%;
            max-height: 475px;
        }
    }

    @media screen and (max-width: 380px) {
        .team{
            flex-direction: column;
            gap: 10px;
        }

        .divider{
            width: 100%;
            height: 2px;
        }

        .member p{
            text-align: center;
        }
    }