.our-team {
    background-color: #121212;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.team-title {
    font-size: 20px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 10px;
}

.team-heading {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.team-description {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.team-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.team-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.team-card:hover {
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.7);
}

.team-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 2px solid #ff5722;
}

.team-info {
    padding: 20px;
}

.team-name {
    font-size: 20px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 10px;
}

.team-role {
    font-size: 16px;
    color: #ccc;
}

@media (max-width: 768px) {
    .team-heading {
        font-size: 28px;
    }

    .team-description {
        font-size: 14px;
    }

    .team-name {
        font-size: 18px;
    }

    .team-role {
        font-size: 14px;
    }
}
