.our-team-section .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Allow height to stretch uniformly */
}
.our-team-section .card-body {
    flex-grow: 1; /* Makes all card bodies take up equal space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.our-team-section .card-title {
    font-size: 1.25rem;
    font-weight: 600;
}
.hero-section {
    background: #d5d5d5;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.services-section {
    padding: 50px 20px;
}
.service-item {
    margin-bottom: 30px;
}
.service-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}
.cta-section {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 50px 20px;
}
.cta-section h2 {
    margin-bottom: 20px;
}
.cta-section a {
    color: white;
    text-decoration: none;
    background: #4caf50;
    padding: 10px 20px;
    border-radius: 5px;
}
.cta-section a:hover {
    background: #45a049;
}
.top-bar {
    background: #f8f9fa;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}
.main-menu {
    background: #343a40;
    color: white;
}
.main-menu a {
    color: white;
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
}
.main-menu a:hover {
    background: #4caf50;
    color: white;
}
.footer {
    background: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.footer a {
    color: #4caf50;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
