h1, h2, h3, h5, h6 {
    background: linear-gradient(to right, #106cf6, #56ab2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}


p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5em;
}

.emoji {
    font-size: 0.8em;
    margin-right: 0.2em;
    color: #106cf6;
}

/* CSS for Team Members Section */
.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    border-radius: 10px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.card img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 210px;
}

.card .container {
    padding: 16px;
}

.card h4 {
    margin: 0;
    font-size: 18px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}