body {
            font-family: sans-serif;
            margin: 20px;
            
        }
        .con{
            max-width: 960px;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
       
        .section-title {
            font-size: 1.5em;
            color: #555;
            margin-bottom: 10px;
            text-align: center;
        }
        .section-description {
            color: #777;
            text-align: center;
            margin-bottom: 30px;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .team-member {
            
            padding: 20px;
            border-radius: 6px;
            text-align: center;
        }
        .profile-image-container {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 15px;
            border: 1px solid #ddd;
        }
        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .member-name {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }
        .member-title {
            color: #555;
            font-size: 0.9em;
            margin-bottom: 10px;
        }
        .member-quote {
            color: #666;
            font-size: 0.85em;
            margin-bottom: 15px;
        }
        