h1, p{
    text-align: center;
}

.intro{
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro img{
    width: 50%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

.content{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.content p{
    font-size: 19px;
    line-height: 1.8;
    margin: 0;
}

.content button{
    background-color: #151A4D;
    padding: 12px 24px;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
    align-self: center;
}

.content button a{
    color: #fff;
     font-weight: bold;
    text-decoration: none;
    font-family: "Jost", sans-serif;
}

.roles h1{
    text-align: center;
}
.roles {
    max-width: 1050px;
    margin: 0 auto;
    padding: 50px 40px;
}

.roles h1 {
    text-align: center;
    margin-bottom: 30px;
}

.role-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 45px;
}

.role-tab {
    border: none;
    background: transparent;
    color: #151A4D;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 18px 35px;
    border-radius: 40px;
    cursor: pointer;
}

.role-tab.active {
    background-color: #151A4D;
    color: #fff;
    border-radius: 20px;
}

.role-content {
    display: flex;
    align-items: center;
    gap: 45px;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.role-content.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.role-image,
.role-text {
    width: 50%;
}

.role-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}

.role-text h2 {
    color: #151A4D;
    font-size: 28px;
    margin-bottom: 22px;
}

.role-text p,
.role-text li {
    color: #151A4D;
    font-size: 16px;
    line-height: 1.5;
}

.role-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.role-btn {
    display: inline-block;
    margin-top: 20px;
    border-radius: 40px;
    padding: 16px 45px;
    background-color: #151A4D;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}