.only-about .about-content {
    max-width: 100%;
}

.only-about .section-title {
    text-align: center;
    margin-bottom: 40px;
}


.only-founders .team-card-wrapper {
    width: calc(30% - 30px); /* Two cards in a row with spacing */
    margin: 15px 0; /* Vertical margin */
}

.only-founders .team-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.only-founders .team-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.only-founders .team-card .content {
    padding: 20px;
}

.only-founders .team-card h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.only-founders .team-card h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-weight: 600;
}

.only-founders .team-card h3 a:hover {
    color: #ff6600;
}

.only-founders .team-card span {
    font-size: 14px;
    color: #dc9900;
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.only-founders .team-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.only-founders .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.only-founders .row{

    gap: 40px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {  /* Adjust the 768px threshold as needed */
    .only-founders .team-card-wrapper {
        width: 100%;
        margin: 15px 0;
    }
}