
    .mentors-section {
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .mentors-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .mentors-header h1 {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 700;
    }

     .mentors-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .mentor-card {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 40px 30px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .mentor-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    }

    .mentor-top {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .mentor-photo {
        flex-shrink: 0;
    }

    .mentor-photo-circle {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #3498db;
        background: #e0e0e0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mentor-photo-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mentor-photo-circle.no-photo {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        font-size: 2.5rem;
        font-weight: 600;
    }

    .mentor-bio {
        flex: 1;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555;
        text-align: justify;
    }

    .mentor-linkedin {
        text-align: center;
        margin: 20px 0;
    }

    .linkedin-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #0077b5;
        text-decoration: none;
        font-weight: 500;
        transition: opacity 0.3s ease;
    }

    .linkedin-link:hover {
        opacity: 0.7;
    }

    .linkedin-icon {
        width: 28px;
        height: 28px;
    }

    .mentor-info {
        text-align: center;
        margin-top: auto;
        padding-top: 20px;
        border-top: 2px solid #ddd;
    }

    .mentor-name {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 8px;
    }

    .mentor-profession {
        font-size: 1rem;
        color: #7f8c8d;
        margin-bottom: 5px;
    }

    .mentor-country {
        font-size: 0.95rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .mentors-section {
            padding: 50px 15px;
        }

        .mentors-header h1 {
            font-size: 2rem;
        }

        .mentors-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .mentor-card {
            padding: 30px 20px;
        }

        .mentor-top {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .mentor-bio {
            text-align: center;
        }
    }
