body {
    font-family: sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, Helvetica, sans-serif;
}

.form-group {
    margin-bottom: 1rem;
}

.member-carousel {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 2rem;

}

.member-carousel img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-carousel img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Style for Apply navigation link */
.apply-link {
    background-color: #FFC72C;
    color: #002D62;
    font-weight: 600;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.apply-link:hover {
    background-color: #facc15;
    box-shadow: 0 0 8px #FFC72C;
}
