* {
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fb;
    color: #333;
}

.team-section {
    padding: 60px 20px;
}

.containerhj {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.team-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a237e;
}

.team-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* Founder Card */
.founder-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px;
    margin-bottom: 60px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.founder-card img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #e3e6ff;
}

.founder-card h3 {
    font-size: 24px;
    color: #1a237e;
}

.founder-card span {
    font-size: 15px;
    font-weight: 600;
    color: #3f51b5;
}

.founder-card p {
    font-size: 15px;
    margin-top: 15px;
    color: #555;
    line-height: 1.7;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #e3e6ff;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #1a237e;
}

.team-card span {
    font-size: 14px;
    font-weight: 600;
    color: #3f51b5;
}

.team-card p {
    font-size: 14px;
    margin-top: 12px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
    .team-title {
        font-size: 28px;
    }

    .founder-card {
        padding: 25px;
    }

    .founder-card img {
        width: 120px;
        height: 120px;
    }
}
