*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background: #f3f4f6;
    min-height: 100vh;
}

.menu-dropdown{
    position: relative;
    display: inline-block;
    margin: 20px;
}

.dropdown-btn{
    background: #1f4e79;
    color: white;

    border: none;
    border-radius: 10px;

    padding: 14px 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.dropdown-btn:hover{
    background: #163a5c;
}

.dropdown-content{
    position: absolute;

    top: 110%;
    left: 0;

    min-width: 240px;

    background: white;

    border-radius: 12px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s;

    z-index: 999;
}

.menu-dropdown:hover .dropdown-content{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a{
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    text-decoration: none;

    color: #333;

    transition: 0.3s;
}

.dropdown-content a:hover,
.dropdown-content .active{
    background: #f1f5f9;
    color: #1f4e79;
}

.profile-header{
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}

.profile-header h1{
    font-size: 48px;
    color: #1f4e79;
    font-weight: bold;
}

.profile-header p{
    margin-top: 10px;

    color: #5b728a;

    font-size: 16px;
    font-style: italic;
    letter-spacing: 1px;
}

.profile-container{
    width: 90%;
    max-width: 1200px;

    margin: 50px auto 80px;
}

.profile-banner{
    width: 100%;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);

    margin-bottom: 40px;
}

.profile-banner img{
    width: 100%;
    display: block;
}

.profile-content{
    color: #222;

    font-size: 18px;
    line-height: 1.8;

    text-align: justify;
}

.profile-content p{
    margin-bottom: 20px;
}

.founder-list{
    margin: 20px 0 30px 30px;
}

.founder-list li{
    margin-bottom: 10px;
}

.founder-structure{
    width:100%;
    margin:35px 0;
    display:flex;
    justify-content:center;
    align-items:center;
}

.founder-structure img{
    width:100%;
    max-width:1000px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    border:4px solid #1f4e79;
    background:white;
    transition:0.3s ease;
}

.founder-structure img:hover{
    transform:scale(1.01);
}

.content2{
    padding: 60px 80px;

    background: #1f4f75;

    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 50px;
}

.banner{
    width: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 20px;
}

.banner img{
    max-width: 700px;
    width: 100%;
}

.bottom-content{
    width: 100%;
    max-width: 1100px;

    display: flex;
    justify-content: space-between;

    gap: 40px;
}

.info-left,
.info-right{
    flex: 1;
}

.info-left h2{
    color: #E5EB14;
    margin-bottom: 15px;
}

.info-left p{
    margin: 8px 0;
}

.info-right{
    line-height: 1.8;
}

.divider{
    width: 2px;
    background: white;
}

@media(max-width: 768px){

    .dropdown-btn{
        width: 100%;
        justify-content: center;
    }

    .dropdown-content{
        width: 100%;
        min-width: unset;
    }

    .profile-header h1{
        font-size: 32px;
    }

    .profile-header p{
        font-size: 13px;
    }

    .profile-content{
        font-size: 15px;
    }

    .founder-structure{
        margin:25px 0;
    }

    .founder-structure img{
        border-radius:12px;
        border-width:2px;
    }

    .content2{
        padding: 40px 20px;
    }

    .bottom-content{
        flex-direction: column;
        text-align: center;
    }

    .info-left,
    .info-right{
        text-align: center;
    }

    .divider{
        width: 100%;
        height: 2px;
    }
}