/* Resetting styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/* Main container */
.about-us {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1, h2 {
    color: #007bff;
    text-align: center;
    margin-bottom: 2rem;
}

/* Company Info Section */
.company-info {
    text-align: center;
    margin-bottom: 2rem;
}

.company-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Team Section */
.team-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
    margin-top: 2rem;
}

.team-member {
    flex: 1 1 calc(33% - 2rem);
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-member {
        flex: 1 1 100%;
    }
}

/* Contact Section */
.contact-section {
    margin-top: 3rem;
    text-align: center;
}

.contact-section p {
    font-size: 1.1rem;
    color: #333;
}

.contact-section a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.initials-circle{
   font-size: 20px;
   font-weight:bold;
   color:white;
   background-color: #4CAF50;
   border-radius:50%;
   width:50px;
   height:50px;
   display:inline-flex;
   align-items: center;
   justify-content: center;
}