 /* Top Section */
        .teamhero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: black;
            color: white;
            padding: 50px;
            background-image: url('your-bg-image.jpg'); /* optional background pattern */
            background-size: cover;
            background-position: center;
        }

        .teamhero-text {
            max-width: 50%;
            margin: 0 auto;
        }

        .teamhero h1 {
            font-size: 3em;
            margin-bottom: 20px;
            text-align: center;
        }

        .teamhero p {
            font-size: 1.1em;
            line-height: 1.6;
            text-align: center;
        }

        .teamhero img {
            width: 300px;
            border-radius: 10px;
        }

        /* Team Section */
        .team-section {
            text-align: center;
            padding: 50px 20px;
        }

        .team-section h2 {
            font-size: 2em;
            margin-bottom: 40px;
        }

        .team-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .team-member {
            max-width: 200px;
            text-align: center;
        }

        .team-member img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #ccc;
        }

        .team-member h3 {
            font-size: 1.1em;
            margin-top: 15px;
        }

        .team-member p {
            font-size: 0.9em;
            color: #555;
        }

        @media (max-width: 768px) {
            .teamhero {
                flex-direction: column;
                text-align: center;
            }

            .teamhero-text {
                max-width: 100%;
            }

            .teamhero img {
                margin-top: 20px;
                width: 80%;
            }
        }/* Features Section */
.features-section {
    padding: 50px 20px;
    text-align: center;
}

.features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    max-width: 500px;
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.feature-card img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-content {
    padding: 20px;
}

.feature-content h3 {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-content p {
    color: #555;
    margin-bottom: 15px;
}

.feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-content ul li {
    padding-left: 25px;
    margin-bottom: 8px;
    position: relative;
}

.feature-content ul li::before {
    content: '✔';
    color: green;
    position: absolute;
    left: 0;
    top: 0;
}

.cta h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: black;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #333;
}


.teams-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}