body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

h1, h2, h3 {
    color: #333;
}

div {
    background: white;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

p {
    line-height: 1.6;
    color: #555;
}

a img {
    width: 200px;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

a img:hover {
    transform: scale(1.1);
}

.about-us {
    background: #ddd;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.about-us h2, .about-us h3 {
    margin-bottom: 5px;
    color: #222;
}

.about-us p {
    margin: 5px 0; /* Reduce space between role and names */
    text-align: center; /* Keep names centered */
    font-weight: bold;
    color: #444;
}


.about-us a img {
    width: 20px; /* Adjust the size as needed */
    height: 20px;
    vertical-align: sub; /* Align with text */
    margin-left: 5px; /* Add spacing from the name */
}

