#ourteam {
    background-color: #f9f9f9;
    padding: 50px 0;
    font-family: '';
}

#ourteam h1 {
    font-family: 'aptos',sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

#ourteam p {
    font-family:'Aptos',sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

#ourteam .row div {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ourteam .row div:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#ourteam ul {
    padding-left: 20px;
    list-style-type: none; 
}

#ourteam ul li {
    margin: 10px 0;
    color: #34495e;
    font-size: 1.2rem; 
    font-weight: bold;
}

#ourteam ul li:before {
    content: '✔️'; 
    color: #3498db;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 10px; 
}