.body {
    /* font-family: "Poppins", sans-serif; */
/*    background: linear-gradient(135deg, #68c3c0, #6fa8dc);*/

}

.open-roles {
    text-align: center;
    padding-top: 200px;
    padding-bottom: 20px;
    /* width: 90%;
    max-width: 480px; */
}

.open-roles h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.roles-list {
    padding: 0 30%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.role-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    transition: transform 0.2s ease;
}

.role-card:hover {
    transform: translateY(-3px);
}

.role-card span {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    text-align: left;
}

.role-card a {
    background-color: #111827;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.role-card button:hover {
    background-color: #333;
}

@media (max-width: 1024px) {
    .roles-list {
      padding: 0 15%;
    }
  }

@media (max-width: 768px) {
    .roles-list {
      padding: 0 5%;
    }
  }
@media (max-width: 480px) {
    .role-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .roles-list {
      padding: 0 5%;
    }

    .role-card a {
        align-self: flex-end;
    }
}
